Skip to content
This repository has been archived by the owner on Feb 21, 2019. It is now read-only.

Commit

Permalink
fix startup issues on PCF
Browse files Browse the repository at this point in the history
PCF changed the way they handle and download npm dependencies. This breaks our appRoot.path/atomist.config.js logic.

This commit changes the npm dependencies to be vendored.
  • Loading branch information
cdupuis committed Apr 16, 2018
1 parent bd61361 commit afddfd7
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 17 deletions.
6 changes: 4 additions & 2 deletions .cfignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/node_modules
#/node_modules
/heap
/test
/test
/log
/scripts
6 changes: 3 additions & 3 deletions config/default.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"endpoints": {
"api":"https://automation-staging.atomist.services/registration",
"api": "https://automation-staging.atomist.services/registration",
"graphql": "https://automation-staging.atomist.services/graphql/team"
},
"groups": null,
"groups": [],
"teamIds": "T1L0VDKJP",
"policy": null,
"http": {
Expand All @@ -16,4 +16,4 @@
}
}
}
}
}
8 changes: 5 additions & 3 deletions config/staging.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
{
"groups": ["all"],
"teamIds": null,
"groups": [
"all"
],
"teamIds": [],
"policy": "durable",
"http": {
"auth": {
Expand All @@ -12,4 +14,4 @@
}
}
}
}
}
20 changes: 11 additions & 9 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit afddfd7

Please sign in to comment.