Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions .github/workflows/changesets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ jobs:
version:
timeout-minutes: 15
runs-on: ubuntu-latest
permissions:
id-token: write # Required for OIDC publishing
contents: write # Required for changesets to push version commit
pull-requests: write # Required for changesets to create PRs
steps:
- name: Checkout code repository
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
Expand All @@ -19,7 +23,11 @@ jobs:
- name: Setup node.js
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
with:
node-version: 22
node-version: 24
registry-url: 'https://registry.npmjs.org'

- name: Install latest npm
run: npm install -g npm@latest

- name: Install dependencies
run: npm install --ignore-scripts
Expand All @@ -36,4 +44,5 @@ jobs:
publish: npm run ci:publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
NPM_TOKEN: ""
NPM_CONFIG_PROVENANCE: true
8 changes: 7 additions & 1 deletion workspaces/estree-ast-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,15 @@
"test-only": "tsx --test-reporter=spec --test \"./test/**/*.spec.ts\"",
"test": "c8 -r html npm run test-only"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public",
"provenance": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/NodeSecure/js-x-ray.git"
"url": "https://github.com/NodeSecure/js-x-ray",
"directory": "workspaces/estree-ast-utils"
},
"keywords": [
"estree",
Expand Down
8 changes: 7 additions & 1 deletion workspaces/js-x-ray-ai/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,15 @@
"test-only": "tsx --test-reporter=spec --test \"./test/**/*.spec.ts\"",
"test": "c8 -r html npm run test-only"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public",
"provenance": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/NodeSecure/js-x-ray.git"
"url": "https://github.com/NodeSecure/js-x-ray",
"directory": "workspaces/js-x-ray-ai"
},
"keywords": [],
"author": "GOMBAULD Clément <clementgombauld@hotmail.fr>",
Expand Down
8 changes: 7 additions & 1 deletion workspaces/js-x-ray/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,15 @@
"test-only": "tsx --test-reporter=spec --test \"./test/**/*.spec.ts\"",
"test": "c8 --all --src ./src -r html npm run test-only"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public",
"provenance": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/NodeSecure/js-x-ray.git"
"url": "https://github.com/NodeSecure/js-x-ray",
"directory": "workspaces/js-x-ray"
},
"keywords": [
"ast",
Expand Down
8 changes: 7 additions & 1 deletion workspaces/sec-literal/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,15 @@
"test-only": "tsx --test-reporter=spec --test \"./test/**/*.spec.ts\"",
"test": "npm run test-only"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public",
"provenance": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/NodeSecure/js-x-ray.git"
"url": "https://github.com/NodeSecure/js-x-ray",
"directory": "workspaces/sec-literal"
},
"keywords": [
"security",
Expand Down
8 changes: 7 additions & 1 deletion workspaces/tracer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,15 @@
"test-only": "tsx --test-reporter=spec --test \"./test/**/*.spec.ts\"",
"test": "c8 -r html npm run test-only"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public",
"provenance": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/NodeSecure/js-x-ray.git"
"url": "https://github.com/NodeSecure/js-x-ray",
"directory": "workspaces/tracer"
},
"keywords": [],
"files": [
Expand Down
8 changes: 7 additions & 1 deletion workspaces/ts-source-parser/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,15 @@
"test-only": "tsx --test-reporter=spec --test \"./test/**/*.spec.ts\"",
"test": "c8 --all --src ./src -r html npm run test-only"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public",
"provenance": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/NodeSecure/js-x-ray.git"
"url": "https://github.com/NodeSecure/js-x-ray",
"directory": "workspaces/ts-source-parser"
},
"keywords": [
"typescript",
Expand Down