-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated dependencies and base resources path.
- Loading branch information
1 parent
7b21390
commit 5d3c272
Showing
8 changed files
with
5,226 additions
and
4,094 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,7 @@ | |
"name": "Colin Tucker", | ||
"role": "Developer", | ||
"email": "[email protected]", | ||
"homepage": "http://www.praxis.net.au" | ||
"homepage": "https://www.praxis.net.au" | ||
} | ||
], | ||
"require": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ | |
{ | ||
"name": "Colin Tucker", | ||
"email": "[email protected]", | ||
"url": "http://www.praxis.net.au" | ||
"url": "https://www.praxis.net.au" | ||
} | ||
], | ||
"repository": { | ||
|
@@ -25,29 +25,33 @@ | |
"url": "https://github.com/praxisnetau/silverware-google/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", | ||
"copy-webpack-plugin": "^4.1.1", | ||
"css-loader": "^0.28.7", | ||
"extract-text-webpack-plugin": "^3.0.1", | ||
"file-loader": "^1.1.5", | ||
"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", | ||
"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": [ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,8 @@ | ||
module.exports = {}; | ||
/* PostCSS Configuration | ||
===================================================================================================================== */ | ||
|
||
module.exports = { | ||
plugins: [ | ||
require('autoprefixer') | ||
] | ||
}; |
Oops, something went wrong.