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:
132
132
pnpm install --frozen-lockfile
133
133
134
134
# 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
137
137
else
138
138
pnpm publish --access public --no-git-checks
139
139
fi
Original file line number Diff line number Diff line change 20
20
"compile:ts" : " tsc" ,
21
21
"compile:css" : " postcss --dir dist --base src \" src/**/*.module.css\" src/styles/index.css" ,
22
22
"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" ,
24
24
"lint" : " node --run lint:js && node --run lint:css" ,
25
25
"lint:css" : " stylelint \" **/*.css\" --allow-empty-input --cache --cache-strategy=content --cache-location=.stylelintcache" ,
26
26
"lint:css:fix" : " node --run lint:css -- --fix" ,
You can’t perform that action at this time.
0 commit comments