Skip to content
Merged
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
Specify node engine minimum version
Setting the minimum version of the node engine will make npm to warn or
complain, if node `engine-strict` config is set to true, whenever the
installation environment does not meet this requirement.

Background:

`css-loader` depends on `postcss` that uses native promises. Promises
where introduced in node version 0.12.0. So `css-loader`
*transitively inherits* this dependency.

Related to #144.
  • Loading branch information
dreyescat committed Jan 11, 2016
commit 3d9dda4822d9b2fe64bb094303465ae83d57530a
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
"version": "0.23.1",
"author": "Tobias Koppers @sokra",
"description": "css loader module for webpack",
"engines": {
"node": ">=0.12.0"
},
"dependencies": {
"css-selector-tokenizer": "^0.5.1",
"cssnano": ">=2.6.1 <4",
Expand Down