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
14 changes: 10 additions & 4 deletions workspaces/conformance/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,16 @@
"test": "c8 -r html npm run test-only && npm run test-types",
"spdx:refresh": "node ./scripts/fetchSpdxLicenses.js"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public",
"provenance": true
},
"repository": {
"type": "git",
"url": "https://github.com/NodeSecure/scanner",
"directory": "workspaces/conformance"
},
"files": [
"dist"
],
Expand All @@ -26,10 +36,6 @@
],
"author": "GENTILHOMME Thomas <gentilhomme.thomas@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/NodeSecure/scanner.git"
},
"bugs": {
"url": "https://github.com/NodeSecure/scanner/issues"
},
Expand Down
14 changes: 10 additions & 4 deletions workspaces/contact/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,16 @@
"test-types": "npm run build && tsd && attw --pack . --profile esm-only",
"test": "c8 -r html npm run test-only && npm run test-types"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public",
"provenance": true
},
"repository": {
"type": "git",
"url": "https://github.com/NodeSecure/scanner",
"directory": "workspaces/contact"
},
"files": [
"dist"
],
Expand All @@ -25,10 +35,6 @@
],
"author": "GENTILHOMME Thomas <gentilhomme.thomas@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/NodeSecure/scanner.git"
},
"bugs": {
"url": "https://github.com/NodeSecure/scanner/issues"
},
Expand Down
14 changes: 10 additions & 4 deletions workspaces/flags/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,16 @@
"test": "c8 -r html npm run test-only && npm run test-types",
"generateFlags": "node scripts/generateFlags.ts"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public",
"provenance": true
},
"repository": {
"type": "git",
"url": "https://github.com/NodeSecure/scanner",
"directory": "workspaces/flags"
},
"keywords": [
"nodesecure",
"flags",
Expand All @@ -34,10 +44,6 @@
"dist"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/NodeSecure/scanner.git"
},
"bugs": {
"url": "https://github.com/NodeSecure/scanner/issues"
},
Expand Down
8 changes: 7 additions & 1 deletion workspaces/fs-walk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,15 @@
"test-types": "attw --pack . --profile esm-only",
"test": "c8 -r html npm run test-only && npm run test-types"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public",
"provenance": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/NodeSecure/scanner.git"
"url": "https://github.com/NodeSecure/scanner",
"directory": "workspaces/fs-walk"
},
"bugs": {
"url": "https://github.com/NodeSecure/scanner/issues"
Expand Down
8 changes: 7 additions & 1 deletion workspaces/github/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,15 @@
"test-types": "attw --pack . --profile esm-only",
"test": "c8 -r html npm run test-only && npm run test-types"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public",
"provenance": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/NodeSecure/scanner.git"
"url": "https://github.com/NodeSecure/scanner",
"directory": "workspaces/github"
},
"keywords": [
"NodeSecure",
Expand Down
14 changes: 10 additions & 4 deletions workspaces/gitlab/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,16 @@
"test-types": "attw --pack . --profile esm-only",
"test": "c8 -r html npm run test-only && npm run test-types"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public",
"provenance": true
},
"repository": {
"type": "git",
"url": "https://github.com/NodeSecure/scanner",
"directory": "workspaces/gitlab"
},
"keywords": [
"NodeSecure",
"gitlab"
Expand All @@ -21,10 +31,6 @@
],
"author": "GENTILHOMME Thomas <gentilhomme.thomas@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/NodeSecure/scanner.git"
},
"bugs": {
"url": "https://github.com/NodeSecure/scanner/issues"
},
Expand Down
8 changes: 7 additions & 1 deletion workspaces/i18n/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,15 @@
"test": "c8 -r html npm run test-only && npm run test-types",
"build:documentation": "node ./scripts/buildDocumentation.ts"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public",
"provenance": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/NodeSecure/scanner.git"
"url": "https://github.com/NodeSecure/scanner",
"directory": "workspaces/i18n"
},
"keywords": [
"i18n",
Expand Down
14 changes: 10 additions & 4 deletions workspaces/mama/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,16 @@
"test-types": "npm run build && tsd && attw --pack . --profile esm-only",
"test": "c8 -r html npm run test-only && npm run test-types"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public",
"provenance": true
},
"repository": {
"type": "git",
"url": "https://github.com/NodeSecure/scanner",
"directory": "workspaces/mama"
},
"files": [
"dist"
],
Expand All @@ -23,10 +33,6 @@
],
"author": "GENTILHOMME Thomas <gentilhomme.thomas@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/NodeSecure/scanner.git"
},
"bugs": {
"url": "https://github.com/NodeSecure/scanner/issues"
},
Expand Down
8 changes: 7 additions & 1 deletion workspaces/npm-types/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,15 @@
"files": [
"src"
],
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public",
"provenance": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/NodeSecure/scanner.git"
"url": "https://github.com/NodeSecure/scanner",
"directory": "workspaces/npm-types"
},
"keywords": [
"npm registry",
Expand Down
8 changes: 7 additions & 1 deletion workspaces/rc/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,15 @@
"test-types": "npm run build && tsd && attw --pack . --profile esm-only",
"test": "c8 -r html npm run test-only && npm run test-types"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public",
"provenance": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/NodeSecure/scanner.git"
"url": "https://github.com/NodeSecure/scanner",
"directory": "workspaces/rc"
},
"files": [
"dist"
Expand Down
14 changes: 10 additions & 4 deletions workspaces/scanner/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,19 @@
"test-only": "node --test ./test/**/*.spec.ts",
"test-types": "attw --pack . --profile esm-only"
},
"files": [
"dist"
],
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public",
"provenance": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/NodeSecure/scanner.git"
"url": "https://github.com/NodeSecure/scanner",
"directory": "workspaces/scanner"
},
"files": [
"dist"
],
"keywords": [
"node",
"nodejs",
Expand Down
14 changes: 10 additions & 4 deletions workspaces/tarball/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,16 @@
"test-types": "attw --pack . --profile esm-only",
"test": "c8 -r html npm run test-only && npm run test-types"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public",
"provenance": true
},
"repository": {
"type": "git",
"url": "https://github.com/NodeSecure/scanner",
"directory": "workspaces/tarball"
},
"files": [
"dist"
],
Expand All @@ -30,10 +40,6 @@
],
"author": "GENTILHOMME Thomas <gentilhomme.thomas@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/NodeSecure/scanner.git"
},
"bugs": {
"url": "https://github.com/NodeSecure/scanner/issues"
},
Expand Down
14 changes: 10 additions & 4 deletions workspaces/tree-walker/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,16 @@
"test-types": "attw --pack . --profile esm-only",
"test": "c8 -r html npm run test-only && npm run test-types"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public",
"provenance": true
},
"repository": {
"type": "git",
"url": "https://github.com/NodeSecure/scanner",
"directory": "workspaces/tree-walker"
},
"files": [
"dist"
],
Expand All @@ -22,10 +32,6 @@
],
"author": "GENTILHOMME Thomas <gentilhomme.thomas@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/NodeSecure/scanner.git"
},
"bugs": {
"url": "https://github.com/NodeSecure/scanner/issues"
},
Expand Down
14 changes: 10 additions & 4 deletions workspaces/utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,19 @@
"test-types": "attw --pack . --profile esm-only",
"test": "c8 -r html npm run test-only && npm run test-types"
},
"files": [
"dist"
],
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public",
"provenance": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/NodeSecure/scanner.git"
"url": "https://github.com/NodeSecure/scanner",
"directory": "workspaces/utils"
},
"files": [
"dist"
],
"bugs": {
"url": "https://github.com/NodeSecure/scanner/issues"
},
Expand Down