Skip to content

Commit

Permalink
Merge pull request #291 from Program-AR/fixing-prestart
Browse files Browse the repository at this point in the history
Fixing prestart
  • Loading branch information
dlopezalvas authored May 15, 2024
2 parents 24deec3 + 5e507a5 commit 97df5c5
Showing 1 changed file with 22 additions and 22 deletions.
44 changes: 22 additions & 22 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,27 @@
"email": "[email protected]",
"url": "http://program.ar"
},
"scripts": {
"postinstall": "sh scripts/copyEmberPB.sh && node ./scripts/change-pilas-versions.js",
"test": "jest",
"prestart": " [ -d node_modules/.vite/deps ] && rm node_modules/.vite/deps/*; node scripts/setEmberRoot.js public/emberPB ''",
"start": "vite",
"start:host": "vite --host",
"start:emberDev": "sh ./scripts/localEmber.sh",
"start:electron": "electron ./dist",
"prebuild": "node scripts/setEmberRoot.js public/emberPB ''",
"build": "tsc && vite build",
"pack:linux_deb": "bash ./scripts/package.sh -linux_deb",
"pack:linux_zip": "bash ./scripts/package.sh -linux_zip",
"pack:linux": "bash ./scripts/package.sh -linux",
"pack:osx": "bash ./scripts/package.sh -osx",
"pack:win": "bash ./scripts/package.sh -win",
"pack:win_zip": "bash ./scripts/package.sh -win_zip",
"pack:html": "bash ./scripts/package.sh -html",
"clean": "rm -rf node_modules dist binaries",
"release": "release-it --only-version",
"preview": "vite preview"
},
"dependencies": {
"@babel/core": "^7.16.0",
"@emotion/babel-plugin": "^11.11.0",
Expand Down Expand Up @@ -94,27 +115,6 @@
"webpack-manifest-plugin": "^4.0.2",
"workbox-webpack-plugin": "^6.4.1"
},
"scripts": {
"postinstall": "sh scripts/copyEmberPB.sh && node ./scripts/change-pilas-versions.js",
"test": "jest",
"prestart": "rm node_modules/.vite/deps/* && node scripts/setEmberRoot.js public/emberPB ''",
"start": "vite",
"start:host": "vite --host",
"start:emberDev": "sh ./scripts/localEmber.sh",
"start:electron": "electron ./dist",
"prebuild": "node scripts/setEmberRoot.js public/emberPB ''",
"build": "tsc && vite build",
"pack:linux_deb": "bash ./scripts/package.sh -linux_deb",
"pack:linux_zip": "bash ./scripts/package.sh -linux_zip",
"pack:linux": "bash ./scripts/package.sh -linux",
"pack:osx": "bash ./scripts/package.sh -osx",
"pack:win": "bash ./scripts/package.sh -win",
"pack:win_zip": "bash ./scripts/package.sh -win_zip",
"pack:html": "bash ./scripts/package.sh -html",
"clean": "rm -rf node_modules dist binaries",
"release": "release-it --only-version",
"preview": "vite preview"
},
"eslintConfig": {
"extends": [
"react-app",
Expand Down Expand Up @@ -262,4 +262,4 @@
"react-app"
]
}
}
}

0 comments on commit 97df5c5

Please sign in to comment.