Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
colintucker committed Jun 12, 2018
2 parents 6ba0811 + 0cd963c commit 71060ec
Show file tree
Hide file tree
Showing 12 changed files with 5,237 additions and 4,039 deletions.
2 changes: 1 addition & 1 deletion admin/client/dist/js/bundle.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion admin/client/dist/styles/bundle.css

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions admin/client/src/bundles/bundle.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
/* SilverWare Calendar Admin Bundle
===================================================================================================================== */

// Load Flatpickr Styles:

require('flatpickr/dist/flatpickr.css');

// Load Styles:

require('styles/bundle.scss');
Expand Down
4 changes: 0 additions & 4 deletions admin/client/src/styles/bundle.scss
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,6 @@
@import "~bootstrap/scss/functions";
@import "~bootstrap/scss/variables";

// Import Flatpickr Styles:

@import "~flatpickr/dist/flatpickr";

// Import Local Styles:

@import "variables";
Expand Down
2 changes: 1 addition & 1 deletion client/dist/js/bundle.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion client/dist/styles/bundle.css

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions client/src/bundles/bundle.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
/* SilverWare Calendar Bundle
===================================================================================================================== */

// Load Flatpickr Styles:

require('flatpickr/dist/flatpickr.css');

// Load Styles:

require('styles/bundle.scss');
Expand Down
4 changes: 0 additions & 4 deletions client/src/styles/bundle.scss
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,6 @@
@import "~bootstrap/scss/functions";
@import "~bootstrap/scss/variables";

// Import Flatpickr Styles:

@import "~flatpickr/dist/flatpickr";

// Import Local Variables:

@import "variables";
Expand Down
39 changes: 22 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
{
"name": "Colin Tucker",
"email": "[email protected]",
"url": "http://www.praxis.net.au"
"url": "https://www.praxis.net.au"
}
],
"repository": {
Expand All @@ -29,29 +29,34 @@
"url": "https://github.com/praxisnetau/silverware-calendar/issues"
},
"engines": {
"node": "^4.2.0"
"node": "^8.x"
},
"scripts": {
"watch": "webpack --env.development --colors --watch",
"build": "webpack --env.production --colors --optimize-minimize"
"build": "webpack --env.production --colors --progress --optimize-minimize"
},
"dependencies": {},
"devDependencies": {
"autoprefixer": "^7.1.5",
"autoprefixer": "^8.2.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"clean-webpack-plugin": "^0.1.17",
"css-loader": "^0.28.7",
"extract-text-webpack-plugin": "^3.0.1",
"file-loader": "^1.1.5",
"flatpickr": "^3.0.7",
"node-sass": "^4.5.3",
"postcss-loader": "^2.0.6",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.0",
"url-loader": "^0.6.2",
"webpack": "^3.6.0"
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "^0.28.11",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.11",
"flatpickr": "^3.1.5",
"node-sass": "^4.8.3",
"postcss-loader": "^2.1.3",
"resolve-url-loader": "^2.3.0",
"sass-loader": "^6.0.7",
"style-loader": "^0.20.3",
"svgo": "^1.0.5",
"svgo-loader": "^2.1.0",
"uglifyjs-webpack-plugin": "^1.2.4",
"url-loader": "^1.0.1",
"webpack": "^3.11.0"
},
"babel": {
"presets": [
Expand Down
9 changes: 8 additions & 1 deletion postcss.config.js
Original file line number Diff line number Diff line change
@@ -1 +1,8 @@
module.exports = {};
/* PostCSS Configuration
===================================================================================================================== */

module.exports = {
plugins: [
require('autoprefixer')
]
};
Loading

0 comments on commit 71060ec

Please sign in to comment.