Skip to content

Commit

Permalink
Fixed package.json scripts
Browse files Browse the repository at this point in the history
Signed-off-by: Jaid <6216144+Jaid@users.noreply.github.com>
  • Loading branch information
Jaid committed Apr 22, 2024
1 parent 16b0d94 commit 0ae83de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -35,8 +35,8 @@
"build:production": "NODE_ENV=production npm run build",
"buildPage": "fse emptyDir dist/page && tsx src/scripts/activeHtml.ts && tsx src/scripts/unusedHtml.ts && tsx src/scripts/deprecatedHtml.ts && fse copy etc/page dist/page",
"inspectConfig": "npx @eslint/config-inspector --config src/index.ts",
"release": "npm run build && fd --unrestricted --full-path 'dist/package/.+/production/package.json' --exec bash -c 'npm publish {//}'",
"release:winddows": "npm run build && pwsh -Command \"Get-ChildItem -Path 'dist/package/*/production/package.json' | ForEach-Object { npm publish $_.DirectoryName }\"",
"release": "npm run build:production && fd --unrestricted --full-path 'dist/package/.+/production/package.json' --exec bash -c 'npm publish {//}'",
"release:windows": "npm run build:production && pwsh -Command \"Get-ChildItem -Path 'dist/package/*/production/package.json' | ForEach-Object { npm publish $_.DirectoryName }\"",
"test": "node --import tsx --test test/index.ts",
"tsc": "tsc"
},
Expand Down

0 comments on commit 0ae83de

Please sign in to comment.