Left: | ||
Right: |
LEFT | RIGHT |
---|---|
1 { | 1 { |
2 "name": "adblockplusui", | 2 "name": "adblockplusui", |
3 "private": true, | 3 "private": true, |
4 "description": "Adblock Plus UI", | 4 "description": "Adblock Plus UI", |
5 "scripts": { | 5 "scripts": { |
6 "lint": "npm run lint:js # keeping :js waiting for :css to land", | 6 "lint": "npm run lint:js", |
saroyanm
2018/02/06 17:33:23
Question: what does this comment mean ?
# keepin
| |
7 "lint:js": "eslint ./*.js ./lib/*.js ./ext/*.js", | 7 "lint:js": "eslint ./*.js ./lib/*.js ./ext/*.js", |
8 "prepare": "python2 ensure_dependencies.py", | 8 "prepare": "python2 ensure_dependencies.py", |
9 "start": "http-server $1" | 9 "start": "http-server" |
saroyanm
2018/02/06 17:33:23
Suggestion: Rather than allowing to specify the pa
Thomas Greiner
2018/02/06 19:08:48
I'd say let's keep it simple for now and merely re
saroyanm
2018/02/07 09:07:53
Okey, in that case we should at least update the R
| |
10 }, | 10 }, |
11 "devDependencies": { | 11 "devDependencies": { |
12 "eslint": "^4.16.0", | 12 "eslint": "^4.16.0", |
13 "eslint-config-eyeo": "^2.0.0", | 13 "eslint-config-eyeo": "^2.0.0", |
14 "http-server": "^0.11.1" | 14 "http-server": "^0.11.1" |
15 } | 15 } |
16 } | 16 } |
LEFT | RIGHT |