Skip to content

Commit

Permalink
fix(ci): deploy
Browse files Browse the repository at this point in the history
add missing modules, update deploy script

add files back to package.json
  • Loading branch information
kevinchappell committed Nov 6, 2018
1 parent 68e9d18 commit 68e897a
Show file tree
Hide file tree
Showing 7 changed files with 1,521 additions and 120 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ jobs:
- git config --global user.email "bot@formbuilder.online"
- git config --global user.name "🤖"
- sudo apt-get update
- sudo apt-get -y install python3-pip
- sudo pip3 install -U setuptools
- sudo apt-get -y install python3-pip python-dev
- sudo pip3 install --user --upgrade pip3 setuptools
- sudo pip3 install mkdocs
- python3 -V
- pip3 -V
Expand Down
4 changes: 2 additions & 2 deletions demo/assets/js/form-builder.min.js

Large diffs are not rendered by default.

Binary file modified demo/assets/js/form-builder.min.js.gz
Binary file not shown.
4 changes: 2 additions & 2 deletions demo/assets/js/form-render.min.js

Large diffs are not rendered by default.

Binary file modified demo/assets/js/form-render.min.js.gz
Binary file not shown.
19 changes: 13 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
"url": "http://github.com/kevinchappell/formBuilder",
"type": "git"
},
"files": [
"dist/**/*"
],
"author": "Kevin Chappell <kevin.b.chappell@gmail.com>",
"contributors": [],
"bugs": "https://github.com/kevinchappell/formBuilder/issues",
Expand Down Expand Up @@ -77,17 +80,19 @@
]
},
"scripts": {
"build:analyze": "webpack --mode production -p --progress --config tools/webpack.config --analyze",
"build:plugins": "webpack --mode production -p --display-entrypoints --progress --config tools/webpack.plugins.config",
"build:vendor": "node tools/run build-vendor",
"build": "webpack --mode production -p --progress --config tools/webpack.config && yarn build:plugins && yarn copy",
"copy": "cp -a dist/* demo/assets/js/ && cp CONTRIBUTING.md docs/contributing.md && cp LICENSE docs/license.md",
"deploy": "yarn build && node tools/run deploy",
"docs": "mkdocs build",
"test": "yarn build",
"font": "node tools/run icon-font",
"lint": "eslint ./src --ext .js || true",
"deploy": "yarn build && node tools/run deploy",
"semantic-release": "semantic-release",
"start": "webpack-dev-server --mode development --open --config tools/webpack.config",
"build": "webpack --mode production -p --progress --config tools/webpack.config && yarn build:plugins && yarn copy",
"build:analyze": "webpack --mode production -p --progress --config tools/webpack.config --analyze",
"build:vendor": "node tools/run build-vendor",
"build:plugins": "webpack --mode production -p --display-entrypoints --progress --config tools/webpack.plugins.config"
"test": "yarn build",
"travis-deploy-once": "travis-deploy-once"
},
"dependencies": {
"jquery": "3.3.1",
Expand Down Expand Up @@ -130,8 +135,10 @@
"replace-in-file": "3.4.0",
"request": "2.87.0",
"sass-loader": "7.0.3",
"semantic-release": "15.10.7",
"semver": "5.5.0",
"style-loader": "0.21.0",
"travis-deploy-once": "5.0.9",
"unzip": "0.1.11",
"webpack": "4.12.0",
"webpack-bundle-analyzer": "2.13.1",
Expand Down
Loading

0 comments on commit 68e897a

Please sign in to comment.