Skip to content

Commit

Permalink
fix(test-app): fix node dependencies resolving
Browse files Browse the repository at this point in the history
  • Loading branch information
Kocal committed Oct 6, 2018
1 parent 3f012b2 commit 9f80765
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions test-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
"license": "MIT",
"private": true,
"scripts": {
"build:dev": "../bin/yprox-cli.js build --mode development",
"build:prod": "../bin/yprox-cli.js build --mode production",
"watch:dev": "../bin/yprox-cli.js build --mode development --watch",
"watch:prod": "../bin/yprox-cli.js build --mode production --watch",
"lint": "../bin/yprox-cli.js lint"
"build:dev": "node -r ../.pnp.js ../bin/yprox-cli.js build --mode development",
"build:prod": "node -r ../.pnp.js ../bin/yprox-cli.js build --mode production",
"watch:dev": "node -r ../.pnp.js ../bin/yprox-cli.js build --mode development --watch",
"watch:prod": "node -r ../.pnp.js ../bin/yprox-cli.js build --mode production --watch",
"lint": "node -r ../.pnp.js ../bin/yprox-cli.js lint"
},
"dependencies": {
"algoliasearch": "^3.30.0",
Expand Down

0 comments on commit 9f80765

Please sign in to comment.