-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from hildjj/update-deps
Update dependencies
- Loading branch information
Showing
6 changed files
with
1,046 additions
and
811 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: Publish Package to npmjs | ||
on: | ||
release: | ||
types: [published] | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
id-token: write | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- run: corepack enable | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: '20.x' | ||
registry-url: 'https://registry.npmjs.org' | ||
cache: pnpm | ||
- run: pnpm i -r | ||
- run: npm run ci | ||
- run: npm publish --access public --provenance | ||
env: | ||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
node_modules/ | ||
coverage/ | ||
.vscode/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,8 @@ | |
"scripts": { | ||
"build": "tsc", | ||
"lint": "eslint .", | ||
"test": "c8 node --stack-trace-limit=1000 --experimental-vm-modules --test" | ||
"test": "c8 node --stack-trace-limit=1000 --experimental-vm-modules --test", | ||
"ci": "npm run build && npm run lint && npm run test" | ||
}, | ||
"keywords": [ | ||
"vm", | ||
|
@@ -17,17 +18,27 @@ | |
"author": "Joe Hildebrand <[email protected]>", | ||
"license": "MIT", | ||
"dependencies": { | ||
"semver": "7.6.0" | ||
"semver": "7.6.2" | ||
}, | ||
"devDependencies": { | ||
"@peggyjs/eslint-config": "3.2.4", | ||
"@types/node": "20.11.20", | ||
"@peggyjs/eslint-config": "4.0.1", | ||
"@types/node": "20.14.11", | ||
"@types/semver": "7.5.8", | ||
"c8": "9.1.0", | ||
"eslint": "8.57.0", | ||
"typescript": "5.3.3" | ||
"c8": "10.1.2", | ||
"eslint": "9.7.0", | ||
"typescript": "5.5.3" | ||
}, | ||
"packageManager": "[email protected]", | ||
"overrides": { | ||
"@typescript-eslint/utils": "8.0.0-alpha.44", | ||
"@typescript-eslint/parser": "8.0.0-alpha.44" | ||
}, | ||
"pnpm": { | ||
"overrides": { | ||
"@typescript-eslint/utils": "8.0.0-alpha.44", | ||
"@typescript-eslint/parser": "8.0.0-alpha.44" | ||
} | ||
}, | ||
"packageManager": "[email protected]", | ||
"engines": { | ||
"node": ">=18" | ||
} | ||
|
Oops, something went wrong.