Skip to content

Commit

Permalink
rename develop scripts to dev
Browse files Browse the repository at this point in the history
  • Loading branch information
bdbch committed Feb 26, 2023
1 parent e4291c5 commit 666ffe6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
},
"scripts": {
"build": "tsc",
"develop": "tsc -w"
"dev": "tsc -w"
},
"dependencies": {
"chalk": "^5.2.0",
Expand Down
2 changes: 1 addition & 1 deletion templates/extension-js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && rollup -c",
"develop": "npm run clean && rollup -c -w"
"dev": "npm run clean && rollup -c -w"
},
"devDependencies": {
"@rollup/plugin-babel": "^6.0.3",
Expand Down
2 changes: 1 addition & 1 deletion templates/extension-ts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && rollup -c",
"develop": "npm run clean && rollup -c -w"
"dev": "npm run clean && rollup -c -w"
},
"devDependencies": {
"@rollup/plugin-babel": "^6.0.3",
Expand Down

0 comments on commit 666ffe6

Please sign in to comment.