File tree Expand file tree Collapse file tree 3 files changed +21
-10
lines changed Expand file tree Collapse file tree 3 files changed +21
-10
lines changed Original file line number Diff line number Diff line change 1
1
/. *
2
2
! /.gitignore
3
3
! /.github
4
- ! /.eslintrc.json
5
4
! /.travis.yml
6
- /bower_components /
7
- /node_modules /
8
- /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
9
16
package-lock.json
17
+ * .lock
18
+
19
+ # Extra files
20
+ ! /.eslintrc.json
Original file line number Diff line number Diff line change @@ -5,14 +5,14 @@ node_js: stable
5
5
env :
6
6
- PATH=$HOME/purescript:$PATH
7
7
install :
8
- - TAG=$(basename $(curl -Ls -o /dev/null -w %{url_effective} https://github.com/purescript/purescript/releases/latest))
9
- - wget -O $HOME/purescript.tar.gz https://github.com/purescript/purescript/releases/download/$TAG/linux64.tar.gz
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
10
- tar -xvf $HOME/purescript.tar.gz -C $HOME/
11
11
- chmod a+x $HOME/purescript
12
12
- npm install -g bower
13
13
- npm install
14
- script :
15
14
- bower install --production
15
+ script :
16
16
- npm run -s build
17
17
- bower install
18
18
- npm run -s test
Original file line number Diff line number Diff line change 6
6
"test" : " pulp test"
7
7
},
8
8
"devDependencies" : {
9
- "eslint" : " ^5.14 .0" ,
10
- "pulp" : " ^12.3.1 " ,
9
+ "eslint" : " ^6.8 .0" ,
10
+ "pulp" : " ^14.0.0 " ,
11
11
"purescript-psa" : " ^0.7.3" ,
12
- "rimraf" : " ^2.6.3 "
12
+ "rimraf" : " ^3.0.2 "
13
13
}
14
14
}
You can’t perform that action at this time.
0 commit comments