Skip to content

Commit 9ed3114

Browse files
committed
Update dependencies, simplify workflows
1 parent dfef9e0 commit 9ed3114

File tree

3 files changed

+4
-12
lines changed

3 files changed

+4
-12
lines changed

.github/workflows/build.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,6 @@ on: [pull_request, push]
55
jobs:
66
build:
77
runs-on: ubuntu-latest
8-
98
steps:
109
- uses: actions/checkout@v4
11-
- uses: ljharb/actions/node/install@main
12-
name: 'nvm install lts/* && npm install'
13-
with:
14-
node-version: lts/*
1510
- run: npm run build

.github/workflows/deploy.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,6 @@ jobs:
1111

1212
steps:
1313
- uses: actions/checkout@v4
14-
- uses: ljharb/actions/node/install@main
15-
name: 'nvm install lts/* && npm install'
16-
with:
17-
node-version: lts/*
1814
- run: npm run build
1915
- uses: JamesIves/github-pages-deploy-action@v4
2016
with:

package.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"scripts": {
66
"start": "npm run build-loose -- --watch",
77
"build": "npm run build-loose -- --strict",
8-
"build-loose": "node -e 'fs.mkdirSync(\"build\", { recursive: true })' && ecmarkup --load-biblio @tc39/ecma262-biblio --verbose spec.emu build/index.html --lint-spec"
8+
"build-loose": "node -e 'fs.mkdirSync(\"build\", { recursive: true })' && ecmarkup --load-biblio @tc39/ecma262-biblio --load-biblio @tc39/ecma402-biblio --verbose spec.emu build/index.html --lint-spec"
99
},
1010
"homepage": "https://github.com/tc39/template-for-proposals#readme",
1111
"repository": {
@@ -14,8 +14,9 @@
1414
},
1515
"license": "MIT",
1616
"devDependencies": {
17-
"@tc39/ecma262-biblio": "^2.1.2816",
18-
"ecmarkup": "^20.0.0"
17+
"@tc39/ecma262-biblio": "^2.1.2909",
18+
"@tc39/ecma402-biblio": "^2.1.1190",
19+
"ecmarkup": "^21.3.0"
1920
},
2021
"engines": {
2122
"node": ">= 18"

0 commit comments

Comments
 (0)