updated npm modules

This commit is contained in:
2019-05-20 20:43:45 -05:00
parent 2319197b81
commit f166b72b7d
1113 changed files with 8758 additions and 12227 deletions

6
node_modules/postcss/CHANGELOG.md generated vendored
View File

@@ -1,6 +1,12 @@
# Change Log
This project adheres to [Semantic Versioning](http://semver.org/).
## 7.0.16
* Revert Custom Properties fix until PostCSS 8.0.
## 7.0.15
* Fix Custom Properties support (by Ivan Solovev).
## 7.0.14
* Fix tokenizer for `postcss-less` (by Matt Lyons).

97
node_modules/postcss/README.md generated vendored
View File

@@ -188,6 +188,60 @@ You can start using PostCSS in just two steps:
[Select plugins]: http://postcss.parts
### CSS-in-JS
The best way to use PostCSS with CSS-in-JS is [`astroturf`].
Add its loader to your `webpack.config.js`:
```js
module.exports = {
module: {
rules: [
{
test: /\.css$/,
use: ['style-loader', 'postcss-loader'],
},
{
test: /\.jsx?$/,
use: ['babel-loader', 'astroturf/loader'],
}
]
}
}
```
Then create `postcss.config.js`:
```js
module.exports = {
plugins: [
require('autoprefixer'),
require('postcss-nested')
]
}
```
[`astroturf`]: https://github.com/4Catalyzer/astroturf
### Parcel
[Parcel] has perfect built-in PostCSS support. It already uses Autoprefixer
and cssnano. If you want to change plugins, create `postcss.config.js`
in projects root:
```js
module.exports = {
plugins: [
require('autoprefixer'),
require('postcss-nested')
]
}
```
Parcel will even automatically install these plugins for you.
[Parcel]: https://parceljs.org
### Webpack
Use [`postcss-loader`] in `webpack.config.js`:
@@ -232,41 +286,6 @@ module.exports = {
[`postcss-loader`]: https://github.com/postcss/postcss-loader
### CSS-in-JS
The best way to use PostCSS with CSS-in-JS is [`astroturf`].
Add its loader to your `webpack.config.js`:
```js
module.exports = {
module: {
rules: [
{
test: /\.css$/,
use: ['style-loader', 'postcss-loader'],
},
{
test: /\.jsx?$/,
use: ['babel-loader', 'astroturf/loader'],
}
]
}
}
```
Then create `postcss.config.js`:
```js
module.exports = {
plugins: [
require('autoprefixer'),
require('postcss-nested')
]
}
```
[`astroturf`]: https://github.com/4Catalyzer/astroturf
### Gulp
Use [`gulp-postcss`] and [`gulp-sourcemaps`].
@@ -428,3 +447,11 @@ module.exports = {
WebStorm 2016.3 [has] built-in PostCSS support.
[has]: https://blog.jetbrains.com/webstorm/2016/08/webstorm-2016-3-early-access-preview/
## Security Contact
To report a security vulnerability, please use the [Tidelift security contact].
Tidelift will coordinate the fix and disclosure.
[Tidelift security contact]: https://tidelift.com/security

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

6
node_modules/postcss/lib/input.js generated vendored

File diff suppressed because one or more lines are too long

6
node_modules/postcss/lib/node.js generated vendored

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

10
node_modules/postcss/package.json generated vendored
View File

@@ -1,8 +1,8 @@
{
"_from": "postcss@^7.0.14",
"_id": "postcss@7.0.14",
"_id": "postcss@7.0.16",
"_inBundle": false,
"_integrity": "sha512-NsbD6XUUMZvBxtQAJuWDJeeC4QFsmWsfozWxCJPWf3M55K9iu2iMDaKqyoOdTJ1R4usBXuxlVFAIo8rZPQD4Bg==",
"_integrity": "sha512-MOo8zNSlIqh22Uaa3drkdIAgUGEL+AD1ESiSdmElLUmE2uVDo1QloiT/IfW9qRw8Gw+Y/w69UVMGwbufMSftxA==",
"_location": "/postcss",
"_phantomChildren": {
"has-flag": "3.0.0"
@@ -54,8 +54,8 @@
"/postcss-unique-selectors",
"/stylehacks"
],
"_resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.14.tgz",
"_shasum": "4527ed6b1ca0d82c53ce5ec1a2041c2346bbd6e5",
"_resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.16.tgz",
"_shasum": "48f64f1b4b558cb8b52c88987724359acb010da2",
"_spec": "postcss@^7.0.14",
"_where": "C:\\xampp\\htdocs\\w4rpservices\\node_modules\\autoprefixer",
"author": {
@@ -114,5 +114,5 @@
"url": "git+https://github.com/postcss/postcss.git"
},
"types": "lib/postcss.d.ts",
"version": "7.0.14"
"version": "7.0.16"
}