Adding Travis Support (#113)

* Adds travis script that will build the project whenever the master branch is updated.

The key to upload is in travis env variable.

Note: This does not yet run the test suite, it will deploy if the build is successful.
Note: it has to build twice, because the first build will fail due to a loader issue.
This commit is contained in:
Paul Kinlan
2018-07-30 15:47:00 +01:00
committed by GitHub
parent f2f467ecb8
commit 07f17dece2
3 changed files with 1585 additions and 2920 deletions

11
.travis.yml Normal file
View File

@@ -0,0 +1,11 @@
language: node_js
node_js:
- node
cache: npm
script: npm run build || npm run build # scss ts definitions need to be generated before an actual build
deploy:
provider: firebase
skip_cleanup: true # stop build folder being cleared up
on:
branch: master

4452
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -23,54 +23,54 @@
"babel-plugin-jsx-pragmatic": "^1.0.2", "babel-plugin-jsx-pragmatic": "^1.0.2",
"babel-plugin-syntax-dynamic-import": "^6.18.0", "babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1", "babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4", "babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-plugin-transform-object-rest-spread": "^6.26.0", "babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-constant-elements": "^6.23.0", "babel-plugin-transform-react-constant-elements": "^6.23.0",
"babel-plugin-transform-react-jsx": "^6.24.1", "babel-plugin-transform-react-jsx": "^6.24.1",
"babel-plugin-transform-react-remove-prop-types": "^0.4.13", "babel-plugin-transform-react-remove-prop-types": "^0.4.13",
"babel-preset-env": "^1.6.1", "babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0", "babel-register": "^6.26.0",
"clean-webpack-plugin": "^0.1.19", "clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.1", "copy-webpack-plugin": "^4.5.2",
"css-loader": "^0.28.11", "css-loader": "^0.28.11",
"exports-loader": "^0.7.0", "exports-loader": "^0.7.0",
"file-loader": "^1.1.11", "file-loader": "^1.1.11",
"html-webpack-plugin": "^3.0.6", "html-webpack-plugin": "^3.2.0",
"husky": "^1.0.0-rc.13", "husky": "^1.0.0-rc.13",
"if-env": "^1.0.4", "if-env": "^1.0.4",
"loader-utils": "^1.1.0", "loader-utils": "^1.1.0",
"mini-css-extract-plugin": "^0.3.0", "mini-css-extract-plugin": "^0.3.0",
"node-sass": "^4.9.2", "node-sass": "^4.9.2",
"optimize-css-assets-webpack-plugin": "^4.0.0", "optimize-css-assets-webpack-plugin": "^4.0.3",
"progress-bar-webpack-plugin": "^1.11.0", "progress-bar-webpack-plugin": "^1.11.0",
"raw-loader": "^0.5.1", "raw-loader": "^0.5.1",
"sass-loader": "^6.0.7", "sass-loader": "^6.0.7",
"script-ext-html-webpack-plugin": "^2.0.1", "script-ext-html-webpack-plugin": "^2.0.1",
"source-map-loader": "^0.2.3", "source-map-loader": "^0.2.3",
"style-loader": "^0.20.3", "style-loader": "^0.20.3",
"ts-loader": "^4.0.1", "ts-loader": "^4.4.2",
"tslint": "^5.10.0", "tslint": "^5.11.0",
"tslint-config-airbnb": "^5.9.2", "tslint-config-airbnb": "^5.9.2",
"tslint-config-semistandard": "^7.0.0", "tslint-config-semistandard": "^7.0.0",
"tslint-react": "^3.5.1", "tslint-react": "^3.6.0",
"typescript": "^2.7.2", "typescript": "^2.9.2",
"typings-for-css-modules-loader": "^1.7.0", "typings-for-css-modules-loader": "^1.7.0",
"webpack": "^4.15.1", "webpack": "^4.16.2",
"webpack-bundle-analyzer": "^2.11.1", "webpack-bundle-analyzer": "^2.13.1",
"webpack-cli": "^2.0.13", "webpack-cli": "^2.1.5",
"webpack-dev-server": "^3.1.1", "webpack-dev-server": "^3.1.5",
"webpack-plugin-replace": "^1.1.1" "webpack-plugin-replace": "^1.1.1"
}, },
"dependencies": { "dependencies": {
"@types/filesize": "^3.6.0", "@types/filesize": "^3.6.0",
"classnames": "^2.2.5", "classnames": "^2.2.6",
"comlink": "^3.0.3", "comlink": "^3.0.3",
"comlink-loader": "^1.0.0", "comlink-loader": "^1.0.0",
"filesize": "^3.6.1", "filesize": "^3.6.1",
"material-components-web": "^0.32.0", "material-components-web": "^0.32.0",
"preact": "^8.2.7", "preact": "^8.2.9",
"preact-i18n": "^1.2.0", "preact-i18n": "^1.2.2",
"preact-material-components": "^1.4.7", "preact-material-components": "^1.4.7",
"preact-router": "^2.6.0" "preact-router": "^2.6.1"
} }
} }