mirror of https://github.com/sbt/sbt.git
Merge pull request #158 from easel/package-json
Extract npm dependencies to package.json file and use it for travis
This commit is contained in:
commit
2ee0253d13
|
|
@ -1,5 +1,6 @@
|
|||
target/
|
||||
.idea/
|
||||
node_modules/
|
||||
|
||||
# tut backups?
|
||||
.*.swp
|
||||
|
|
|
|||
|
|
@ -1,7 +1,6 @@
|
|||
language: java
|
||||
install:
|
||||
- npm install xmldom
|
||||
- npm install xhr2
|
||||
- npm install
|
||||
- curl -L -o ~/sbt https://github.com/paulp/sbt-extras/raw/478a364a2d43d6e1ac4451f8b84cdafe43a2e43f/sbt
|
||||
- chmod +x ~/sbt
|
||||
os:
|
||||
|
|
|
|||
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"repository": "https://github.com/alexarchambault/coursier.git",
|
||||
"license": "Apache-2.0",
|
||||
"devDependencies": {
|
||||
"xmldom": "latest",
|
||||
"xhr2": "latest"
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue