Skip to content

Commit

Permalink
Add missing build script
Browse files Browse the repository at this point in the history
  • Loading branch information
tristanlee85 committed May 9, 2024
1 parent f2d3242 commit 521b621
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions examples/v7-remix-template/package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"scripts": {
"edgio:dev": "edgio dev",
"edgio:build": "edgio build",
"edgio:deploy": "edgio deploy",
"edgio:dev": "npm run build && edgio dev",
"edgio:build": "npm run build && edgio build",
"edgio:deploy": "npm run build && edgio deploy",
"build": "remix vite:build",
"dev": "remix vite:dev",
"lint": "eslint --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint .",
Expand Down
6 changes: 3 additions & 3 deletions examples/v7-remix/package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"scripts": {
"edgio:dev": "edgio dev",
"edgio:build": "edgio build",
"edgio:deploy": "edgio deploy",
"edgio:dev": "npm run build && edgio dev",
"edgio:build": "npm run build && edgio build",
"edgio:deploy": "npm run build && edgio deploy",
"build": "remix vite:build",
"dev": "remix vite:dev",
"lint": "eslint --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint .",
Expand Down

0 comments on commit 521b621

Please sign in to comment.