diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..e56d44bc --- /dev/null +++ b/.travis.yml @@ -0,0 +1,14 @@ +language: node_js +node_js: + - "node" +install: npm install +before_script: + - npm install -g grunt +script: + - grunt lint + - grunt test + - grunt docs + - grunt node + - grunt prod +deploy: + skip_cleanup: true diff --git a/Gruntfile.js b/Gruntfile.js index 692de0e3..3d77ab02 100755 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -26,7 +26,7 @@ module.exports = function (grunt) { grunt.registerTask("prod", "Creates a production-ready build. Use the --msg flag to add a compile message.", - ["eslint", "test", "clean:prod", "clean:docs", "jsdoc", "webpack:webProd", "inline", "chmod"]); + ["eslint", "clean:prod", "webpack:webProd", "inline", "chmod"]); grunt.registerTask("release", "Prepares and deploys a production version of CyberChef to the gh-pages branch.", diff --git a/package.json b/package.json index 6aba8da7..38dc2808 100644 --- a/package.json +++ b/package.json @@ -78,7 +78,7 @@ "zlibjs": "^0.2.0" }, "scripts": { - "build": "grunt dev", + "build": "grunt prod", "test": "grunt test", "docs": "grunt docs" }