Skip to content

Commit

Permalink
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -77,7 +77,7 @@
"lint:js": "cross-env NODE_ENV=production eslint --fix --cache --cache-location=.cache/eslint --ext .js,.json,.mjs,.ts,.cjs --report-unused-disable-directives",
"lint:package": "sort-package-json",
"release": "yarn run build && auto shipit",
"publish-action": "./scripts/publish-action.mjs $ARG_0 $ARG_1 $ARG_2 $ARG_3",
"publish-action": "./scripts/publish-action.mjs",
"trace": "./dist/bin.js trace",
"trim-stats": "./dist/bin.js trim-stats-file",
"storybook": "start-storybook -p 9009 -s static",
4 changes: 1 addition & 3 deletions scripts/publish-action.mjs
Original file line number Diff line number Diff line change
@@ -34,9 +34,7 @@ const publishAction = async ({ repo, tag, version }) => {
* release action <canary | next | latest> [--dry-run]
*/
(async () => {
const [data] = process.argv.slice(2);

console.log(JSON.parse(data));
console.log(JSON.parse(process.env.ARG_0));
return;

// if (tag === 'canary') {

0 comments on commit 0ae80d0

Please sign in to comment.