File tree Expand file tree Collapse file tree 3 files changed +28
-12
lines changed Expand file tree Collapse file tree 3 files changed +28
-12
lines changed Original file line number Diff line number Diff line change 1
1
/. *
2
2
! /.gitignore
3
+ ! /.github
3
4
! /.travis.yml
4
- /bower_components /
5
- /node_modules /
6
- /output /
5
+
6
+ # Dependencies
7
+ bower_components
8
+ node_modules
9
+
10
+ # Generated files
11
+ output
12
+ dce-output
13
+ generated-docs
14
+
15
+ # Lockfiles
7
16
package-lock.json
17
+ * .lock
Original file line number Diff line number Diff line change 1
1
language : node_js
2
2
dist : trusty
3
+ sudo : required
3
4
node_js : stable
5
+ env :
6
+ - PATH=$HOME/purescript:$PATH
4
7
install :
8
+ - TAG=$(basename $(curl --location --silent --output /dev/null -w %{url_effective} https://github.com/purescript/purescript/releases/latest))
9
+ - curl --location --output $HOME/purescript.tar.gz https://github.com/purescript/purescript/releases/download/$TAG/linux64.tar.gz
10
+ - tar -xvf $HOME/purescript.tar.gz -C $HOME/
11
+ - chmod a+x $HOME/purescript
5
12
- npm install -g bower
6
13
- npm install
7
- script :
8
14
- bower install --production
15
+ script :
9
16
- npm run -s build
10
17
- bower install
11
- - npm -s test
18
+ - npm run -s test
12
19
after_success :
13
- - >-
14
- test $TRAVIS_TAG &&
15
- echo $GITHUB_TOKEN | pulp login &&
16
- echo y | pulp publish --no-push
20
+ - >-
21
+ test $TRAVIS_TAG &&
22
+ echo $GITHUB_TOKEN | pulp login &&
23
+ echo y | pulp publish --no-push
Original file line number Diff line number Diff line change 6
6
"test" : " pulp test"
7
7
},
8
8
"devDependencies" : {
9
- "pulp" : " ^13 .0.0" ,
9
+ "pulp" : " ^14 .0.0" ,
10
10
"purescript-psa" : " ^0.7.3" ,
11
- "purescript" : " ^0.13.0" ,
12
- "rimraf" : " ^2.5.4"
11
+ "rimraf" : " ^3.0.2"
13
12
}
14
13
}
You can’t perform that action at this time.
0 commit comments