Skip to content

Commit 593af18

Browse files
authored
update dependencies and prepare 0.8.0 (#32)
* update dependencies * fix tests * 0.8.0 * switch to l10n
1 parent 404bf35 commit 593af18

File tree

6 files changed

+1575
-3768
lines changed

6 files changed

+1575
-3768
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Install Node.js
1515
uses: actions/setup-node@v3
1616
with:
17-
node-version: 16.x
17+
node-version: 18.x
1818
- name: Install root project dependencies
1919
run: npm install
2020
- name: Build and run tests

.vscode/launch.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,16 @@
55
"version": "0.2.0",
66
"configurations": [
77
{
8-
"name": "Launch via NPM",
9-
"request": "launch",
10-
"runtimeArgs": [
11-
"test"
8+
"name": "Run Tests",
9+
"program": "${workspaceFolder}/node_modules/.bin/ava",
10+
"args": [
11+
"./lib/test/test.js"
1212
],
13-
"runtimeExecutable": "npm",
13+
"request": "launch",
1414
"skipFiles": [
1515
"<node_internals>/**"
1616
],
17-
"type": "pwa-node"
17+
"type": "node"
1818
}
1919
]
2020
}

0 commit comments

Comments
 (0)