forked from virtualcommons/port-of-mars
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
migration steps for future ref: - replace yarn install with npm install - (npm ci == yarn install --frozen-lockfile) - replace yarn <script> with npm run <script> - use `--` when passing args to scripts called with npm run - replace yarn.lock references with package-lock.json - remove node_modules and yarn.lock, run npm i - optionally prevent using yarn with package.json "engines" trick resolves virtualcommons#926
- Loading branch information
Showing
29 changed files
with
17,307 additions
and
10,146 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,6 @@ | |
|
||
set -o errexit | ||
|
||
yarn install | ||
exec yarn serve | ||
npm install | ||
exec npm run serve | ||
|
Oops, something went wrong.