1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

chore: Add node invocation to package scripts

Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
Sebastian Malton 2023-04-13 13:11:53 -04:00
parent 2cf006435d
commit 3637c0a26a
4 changed files with 4 additions and 4 deletions

View File

@ -6,7 +6,7 @@
"scripts": {
"clean": "rimraf dist/",
"build": "swc ./src/index.ts -d ./dist",
"bump": "./dist/index.js"
"bump": "node ./dist/index.js"
},
"type": "module",
"files": [

View File

@ -7,7 +7,7 @@
"scripts": {
"clean": "rimraf dist/",
"build": "swc ./src/index.ts -d ./dist/",
"ensure": "./dist/index.js"
"ensure": "node ./dist/index.js"
},
"type": "module",
"files": [

View File

@ -6,7 +6,7 @@
"scripts": {
"clean": "rimraf dist/",
"build": "swc ./src/index.ts -d ./dist/",
"generate": "./dist/index.js"
"generate": "node ./dist/index.js"
},
"files": [
"dist"

View File

@ -8,7 +8,7 @@
"scripts": {
"clean": "rimraf dist/",
"build": "swc ./src/index.ts -d ./dist",
"create": "./dist/index.js"
"create": "node ./dist/index.js"
},
"type": "module",
"devDependencies": {