postcss-normalize-charset
Advanced tools
Comparing version 5.0.2 to 5.0.3
{ | ||
"name": "postcss-normalize-charset", | ||
"version": "5.0.2", | ||
"version": "5.0.3", | ||
"description": "Add necessary or remove extra charset with PostCSS", | ||
@@ -13,3 +13,3 @@ "keywords": [ | ||
"files": [ | ||
"dist", | ||
"src", | ||
"LICENSE" | ||
@@ -23,3 +23,3 @@ ], | ||
"homepage": "https://github.com/cssnano/cssnano", | ||
"main": "dist/index.js", | ||
"main": "src/index.js", | ||
"engines": { | ||
@@ -34,7 +34,3 @@ "node": "^10 || ^12 || >=14.0" | ||
}, | ||
"scripts": { | ||
"prebuild": "rimraf dist", | ||
"build": "babel src --config-file ../../babel.config.json --out-dir dist --ignore \"**/__tests__/\"" | ||
}, | ||
"readme": "# postcss-normalize-charset\n\nAdd necessary or remove extra charset with PostCSS\n\n```css\na{\n content: \"©\";\n}\n```\n\n```css\n@charset \"utf-8\";\na{\n content: \"©\";\n}\n```\n\n## API\n\n### normalizeCharset([options])\n\n#### options\n\n##### add\n\nType: `boolean` \nDefault: `true`\n\nPass `false` to stop the module from adding a `@charset` declaration if it was\nmissing from the file (and the file contained non-ascii characters).\n\n## Usage\n\nSee the [PostCSS documentation](https://github.com/postcss/postcss#usage) for\nexamples for your environment.\n\n## Contributors\n\nSee [CONTRIBUTORS.md](https://github.com/cssnano/cssnano/blob/master/CONTRIBUTORS.md).\n\n## License\n\nMIT © [Bogdan Chadkin](mailto:trysound@yandex.ru)\n" | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
4329
41