Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update webpack #141

Merged
merged 2 commits into from
Sep 3, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ Changelog
2.0a7 (unreleased)
^^^^^^^^^^^^^^^^^^

- Nothing changed yet.
.. warning::
Este release atualiza as dependências do processamento de recursos estáticos.
Em ambiente de desenvolvimento pode ser necessário remover as pastas ``parts`` e ``webpack/node_modules`` para efetivar a atualização de ambiente.

- Atualiza versões do `Node.js <https://nodejs.org/>`_ e sc.recipe.staticresources.
[rodfersou]


2.0a6 (2018-08-31)
Expand Down
6 changes: 3 additions & 3 deletions buildout.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ eggs = pylint < 2.0

[node]
recipe = gp.recipe.node
version = 6.6.0
npms = npm yarn webpack@3
scripts = npm yarn webpack
version = 8.11.2
npms = npm yarn
scripts = npm yarn

[staticresources]
recipe = sc.recipe.staticresources
Expand Down
3 changes: 0 additions & 3 deletions webpack/.babelrc

This file was deleted.

35 changes: 18 additions & 17 deletions webpack/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,25 +5,26 @@
"scripts": {
"build": "./node_modules/.bin/webpack -p",
"debug": "./node_modules/.bin/webpack --watch",
"watch": "./node_modules/.bin/webpack -p --watch"
"watch": "./node_modules/.bin/webpack -p --watch",
"test": "NODE_ENV=testing ./node_modules/.bin/karma start --single-run"
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"browsers": [
"last 3 versions"
]
}
}
]
]
},
"repository": {},
"license": "GPL-2.0",
"devDependencies": {
"babel-core": "^6.22.1",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.22.0",
"css-loader": "^0.28.7",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.5",
"image-webpack-loader": "^3.1.0",
"node-sass": "^4.5.3",
"postcss": "^6.0.14",
"postcss-cssnext": "^3.0.2",
"postcss-loader": "^2.0.8",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.0",
"webpack": "^3",
"webpack-spritesmith": "^0.3.3"
"dependencies": {
"sc.recipe.staticresources": "simplesconsultoria/sc.recipe.staticresources#1.0b1"
}
}