Remove prettier from travis

This commit is contained in:
Jorge Bucaran 2019-05-05 00:48:59 +09:00
parent 0da4275cea
commit 018af1bc18
No known key found for this signature in database
GPG Key ID: E54BA3C0E646DB30
2 changed files with 3 additions and 4 deletions

View File

@ -20,7 +20,6 @@ cache:
script:
- npm test
- codecov
- npm run format -- --list-different
notifications:
email: false

View File

@ -18,13 +18,13 @@
"scripts": {
"test": "exit",
"build": "npm run bundle && npm run minify",
"bundle": "rollup -i src/index.js -o dist/hyperapp.js --no-esModule -m -f umd -n hyperapp",
"minify": "terser dist/hyperapp.js -o dist/hyperapp.js -mc --source-map includeSources,url=hyperapp.js.map",
"bundle": "rollup -i src/index.js -o dist/hyperappTime.js --no-esModule -m -f umd -n hyperappTime",
"minify": "terser dist/hyperappTime.js -o dist/hyperappTime.js -mc --source-map includeSources,url=hyperappTime.js.map",
"prepare": "npm run build",
"release": "npm run build && npm test && git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags && npm publish"
},
"devDependencies": {
"rollup": "^1.10.1",
"rollup": "^1.11.2",
"terser": "^3.17.0"
}
}