Skip to content

Commit 43ff6e2

Browse files
author
Mark Skelton
committed
Initial commit
0 parents  commit 43ff6e2

File tree

12 files changed

+15584
-0
lines changed

12 files changed

+15584
-0
lines changed

.github/workflows/release.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Release
2+
on: [push]
3+
jobs:
4+
release:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- uses: actions/checkout@v2
8+
- run: npm ci
9+
- run: npx semantic-release
10+
env:
11+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
12+
VSCE_TOKEN: ${{ secrets.VSCE_TOKEN }}

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules/

.releaserc.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"branches": ["main"],
3+
"verifyConditions": ["semantic-release-vsce", "@semantic-release/github"],
4+
"prepare": {
5+
"path": "semantic-release-vsce",
6+
"packageVsix": "mskelton.playwright-snippets.vsix"
7+
},
8+
"publish": [
9+
"semantic-release-vsce",
10+
{
11+
"path": "@semantic-release/github",
12+
"assets": "mskelton.playwright-snippets.vsix"
13+
}
14+
]
15+
}

.vscode/launch.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
// A launch configuration that launches the extension inside a new window
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
{
6+
"version": "0.2.0",
7+
"configurations": [
8+
{
9+
"name": "Extension",
10+
"type": "extensionHost",
11+
"request": "launch",
12+
"runtimeExecutable": "${execPath}",
13+
"args": [
14+
"--disable-extensions",
15+
"--extensionDevelopmentPath=${workspaceFolder}"
16+
]
17+
}
18+
]
19+
}

.vscodeignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
*
2+
*/**
3+
**/.DS_Store
4+
!static
5+
!package.json
6+
!snippets.json
7+
!README.md
8+
!CHANGELOG.md
9+
!LICENSE

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Changelog
2+
3+
The changelog is automatically updated using
4+
[semantic-release](https://github.com/semantic-release/semantic-release). You
5+
can see it on the
6+
[releases page](https://github.com/mskelton/vscode-playwright-snippets/releases).

LICENSE

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
ISC License
2+
3+
Copyright (c) 2022, Mark Skelton
4+
5+
Permission to use, copy, modify, and/or distribute this software for any
6+
purpose with or without fee is hereby granted, provided that the above
7+
copyright notice and this permission notice appear in all copies.
8+
9+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15+
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Playwright Snippets
2+
3+
![Build status](https://github.com/mskelton/vscode-playwright-snippets/workflows/Release/badge.svg?branch=main)
4+
[![Extension version](https://img.shields.io/vscode-marketplace/v/mskelton.playwright-snippets.svg)](https://marketplace.visualstudio.com/items?itemName=mskelton.playwright-snippets)
5+
[![Extension installs](https://img.shields.io/vscode-marketplace/i/mskelton.playwright-snippets.svg)](https://marketplace.visualstudio.com/items?itemName=mskelton.playwright-snippets)
6+
[![Semantic release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release)
7+
8+
[Playwright test](https://playwright.dev) snippets for VS Code.
9+
10+
## Snippets
11+
12+
The following snippets are provided by this package. If you have ideas of other snippets that would be helpful, please [open an issue](https://github.com/mskelton/vscode-playwright-snippets/issues/new).
13+
14+
TODO

0 commit comments

Comments
 (0)