File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -132,8 +132,8 @@ jobs:
132132 pnpm install --frozen-lockfile
133133
134134 # Check if a custom publish script exists in package.json
135- if jq -e '.scripts.publish ' package.json > /dev/null; then
136- pnpm run publish
135+ if jq -e '.scripts.release ' package.json > /dev/null; then
136+ pnpm run release
137137 else
138138 pnpm publish --access public --no-git-checks
139139 fi
Original file line number Diff line number Diff line change 2020 "compile:ts" : " tsc" ,
2121 "compile:css" : " postcss --dir dist --base src \" src/**/*.module.css\" src/styles/index.css" ,
2222 "compile" : " node --run compile:ts && node --run compile:css" ,
23- "publish " : " node --run compile && node scripts/publish.mjs" ,
23+ "release " : " node --run compile && node scripts/publish.mjs" ,
2424 "lint" : " node --run lint:js && node --run lint:css" ,
2525 "lint:css" : " stylelint \" **/*.css\" --allow-empty-input --cache --cache-strategy=content --cache-location=.stylelintcache" ,
2626 "lint:css:fix" : " node --run lint:css -- --fix" ,
You can’t perform that action at this time.
0 commit comments