Skip to content

Commit 1f4807b

Browse files
authored
Merge pull request #2 from rjgoldsborough/yarn
adding yarn based nodejs buildpack
2 parents dc907ad + 55c7f16 commit 1f4807b

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

.buildpacks

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
https://github.com/rcaught/heroku-buildpack-cmake#e4e2c9e
22
https://github.com/alexcrichton/heroku-buildpack-rust#ca218b5
3+
https://github.com/heroku/heroku-buildpack-nodejs#yarn
34
https://github.com/tonycoco/heroku-buildpack-ember-cli#3be749b
45
https://github.com/ryandotsmith/nginx-buildpack.git#af813ba

package.json

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,13 @@
77
"test": "tests"
88
},
99
"scripts": {
10-
"build": "ember build",
11-
"start": "ember server",
12-
"start:local": "ember server --proxy http://127.0.0.1:8888",
13-
"start:staging": "ember server --proxy https://staging-crates-io.herokuapp.com",
14-
"start:live": "ember server --proxy https://crates.io",
15-
"test": "ember test"
10+
"build": "yarn run ember build",
11+
"start": "yarn run ember server",
12+
"start:local": "yarn run ember server --proxy http://127.0.0.1:8888",
13+
"start:staging": "yarn run ember server --proxy https://staging-crates-io.herokuapp.com",
14+
"start:live": "yarn run ember server --proxy https://crates.io",
15+
"test": "yarn run ember test",
16+
"ember": "ember"
1617
},
1718
"repository": "",
1819
"engines": {

0 commit comments

Comments
 (0)