Skip to content

Commit

Permalink
make grid layout local
Browse files Browse the repository at this point in the history
  • Loading branch information
GopherJ committed Sep 10, 2018
1 parent d2d23a1 commit f769cfb
Show file tree
Hide file tree
Showing 12 changed files with 1,949 additions and 74 deletions.
7 changes: 5 additions & 2 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
{
"presets": [
[
"es2015"
"es2015-loose"
],
"stage-0"
],
"plugins": ["dynamic-import-webpack"]
"plugins": [
"dynamic-import-webpack",
"transform-flow-comments"
]
}
271 changes: 218 additions & 53 deletions dist/LayoutGrid.js

Large diffs are not rendered by default.

9 changes: 2 additions & 7 deletions dist/LayoutGrid.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/LayoutGrid.min.js.map

Large diffs are not rendered by default.

13 changes: 8 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,19 @@
"buefy": "^0.6.3",
"lodash": "^4.17.5",
"vue": "^2.5.13",
"vue-grid-layout": "^2.1.13",
"vuex": "^3.0.1"
"vuex": "^3.0.1",
"element-resize-detector": "^1.1.10",
"interactjs": "^1.3.3"
},
"devDependencies": {
"autoprefixer": "^8.2.0",
"babel-core": "^6.24.0",
"babel-loader": "^6.4.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-dynamic-import-webpack": "^1.0.2",
"babel-preset-es2015": "^6.24.0",
"babel-preset-es2015-loose": "^7.0.0",
"babel-preset-stage-0": "^6.24.1",
"cross-env": "^3.0.0",
"css-loader": "^0.27.3",
"cssnano": "^3.10.0",
"file-loader": "^1.1.11",
Expand All @@ -47,6 +50,6 @@
"vue-loader": "^11.1.4",
"vue-style-loader": "^2.0.2",
"vue-template-compiler": "^2.2.3",
"webpack": "^2.7.0"
"webpack": "^3.5.6"
}
}
3 changes: 1 addition & 2 deletions scripts/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,4 @@ export NODE_ENV=development
../node_modules/.bin/webpack --hide-modules --colors --progress --config webpack.config.js --env development --display-error-details

echo "Building umd minified version"
export NODE_ENV=production
../node_modules/.bin/webpack --hide-modules --colors --progress --config webpack.config.js --env production --display-error-details
cross-env NODE_ENV=production ../node_modules/.bin/webpack --hide-modules --colors --progress --config webpack.config.js --env production --display-error-details
Loading

0 comments on commit f769cfb

Please sign in to comment.