Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

postcss-prefixwrap

Package Overview
Dependencies
Maintainers
1
Versions
76
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

postcss-prefixwrap - npm Package Compare versions

Comparing version 1.16.0 to 1.17.0

ARCHITECTURE.md

2

build/PluginConstructor.js

@@ -17,3 +17,3 @@ "use strict";

var result = {};
if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
__setModuleDefault(result, mod);

@@ -20,0 +20,0 @@ return result;

@@ -5,5 +5,12 @@ # [PostCSS Prefix Wrap](./README.md) / Changelog

## [1.17.0](https://github.com/dbtedman/postcss-prefixwrap/releases/tag/1.17.0)
### Features and Improvements
- Dependency updates
- Documentation refactor
## [1.16.0](https://github.com/dbtedman/postcss-prefixwrap/releases/tag/1.16.0)
### Bug Fixes
### Features and Improvements

@@ -10,0 +17,0 @@ - Dependency updates

MIT License
Copyright © 2020 [Daniel Tedman](https://danieltedman.com/)
Copyright © 2020 [Daniel Tedman](https://danieltedman.com/my-work/postcss-prefixwrap)

@@ -5,0 +5,0 @@ Permission is hereby granted, free of charge, to any person obtaining a copy

{
"name": "postcss-prefixwrap",
"version": "1.16.0",
"version": "1.17.0",
"description": "A PostCSS plugin that is used to wrap css styles with a css selector to constrain their affect on parent elements in a page.",

@@ -38,21 +38,22 @@ "license": "MIT",

"devDependencies": {
"@types/jest": "26.0.0",
"@types/node": "14.0.13",
"@typescript-eslint/eslint-plugin": "3.2.0",
"@typescript-eslint/parser": "3.2.0",
"codecov": "3.7.0",
"eslint": "7.2.0",
"@babel/core": "7.11.6",
"@types/jest": "26.0.13",
"@types/node": "14.6.4",
"@typescript-eslint/eslint-plugin": "4.0.1",
"@typescript-eslint/parser": "4.0.1",
"codecov": "3.7.2",
"eslint": "7.8.1",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "2.21.2",
"eslint-plugin-jest": "23.13.2",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jest": "24.0.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-security-node": "1.0.12",
"husky": "4.2.5",
"jest": "26.0.1",
"postcss": "7.0.21",
"prettier": "2.0.5",
"ts-jest": "26.1.0",
"ts-node": "8.10.2",
"typescript": "3.9.5"
"jest": "26.4.2",
"postcss": "7.0.32",
"prettier": "2.1.1",
"ts-jest": "26.3.0",
"ts-node": "9.0.0",
"typescript": "4.0.2"
}
}

@@ -1,18 +0,17 @@

# [PostCSS Prefix Wrap](https://github.com/dbtedman/postcss-prefixwrap)
# [PostCSS Prefix Wrap](https://danieltedman.com/my-work/postcss-prefixwrap)
[![Codecov](https://codecov.io/gh/dbtedman/postcss-prefixwrap/branch/master/graph/badge.svg)](https://codecov.io/gh/dbtedman/postcss-prefixwrap)
[![GitHub Actions](https://github.com/dbtedman/postcss-prefixwrap/workflows/Test/badge.svg)](https://github.com/dbtedman/postcss-prefixwrap/actions?workflow=Test)
[![Known Vulnerabilities](https://snyk.io/test/github/dbtedman/postcss-prefixwrap/badge.svg?style=flat-square)](https://snyk.io/test/github/dbtedman/postcss-prefixwrap)
[![Maintainability](https://api.codeclimate.com/v1/badges/fa0627fb4cfdc2a6dd04/maintainability)](https://codeclimate.com/github/dbtedman/postcss-prefixwrap/maintainability)
[![Package Downloads (Weekly)](https://badgen.net/npm/dw/postcss-prefixwrap?label=Downloads&style=flat)](https://www.npmjs.com/package/postcss-prefixwrap)
[![Package License](https://badgen.net/npm/license/postcss-prefixwrap?label=License&style=flat)](https://www.npmjs.com/package/postcss-prefixwrap)
[![Package Version](https://badgen.net/npm/v/postcss-prefixwrap?label=Latest&style=flat)](https://www.npmjs.com/package/postcss-prefixwrap)
[![CI Build Test](https://github.com/dbtedman/postcss-prefixwrap/workflows/build-test/badge.svg)](https://github.com/dbtedman/postcss-prefixwrap/actions?workflow=build-test)
[![Test Code Coverage](https://codecov.io/gh/dbtedman/postcss-prefixwrap/branch/master/graph/badge.svg)](https://codecov.io/gh/dbtedman/postcss-prefixwrap)
[![Package Downloads (Weekly)](https://badgen.net/npm/dw/postcss-prefixwrap?label=downloads&style=flat)](https://www.npmjs.com/package/postcss-prefixwrap)
A [PostCSS](https://postcss.org) plugin which prepends a selector to CSS styles to constrain their effect on parent elements in a page.
- [Where do I start?](#where-do-i-start)
- [How to use this plugin?](#how-to-use-this-plugin)
- [What options does it have?](#what-options-does-it-have)
- [Want to lean more?](#want-to-lean-more)
- [How to contribute?](#how-to-contribute)
- [Is this project secure?](#is-this-project-secure)
- [How is the project structured?](#how-is-the-project-structured)
- [License](#license)
## Where do I start?
## How to use this plugin?

@@ -177,7 +176,16 @@ > These instructions are only for this plugin. See the [PostCSS](http://postcss.org) website for framework information.

## Want to lean more?
## How to contribute?
- See our [Contributing Guide](CONTRIBUTING.md) for details on how this repository is developed.
- See our [Changelog](CHANGELOG.md) for details on which features, improvements, and bug fixes have been implemented
- See our [License](LICENSE.md) for details on how you can use the code in this repository.
- See our [Security Guide](SECURITY.md) for details on how security is considered.
Read our [Contributing Guide](CONTRIBUTING.md) to learn more about how to contribute to this project.
## Is this project secure?
Read our [Security Guide](SECURITY.md) to learn how security is considered during the development and operation of this plugin.
## How is the project structured?
Read our [Architecture Document](ARCHITECTURE.md) to learn how this project is structured.
## License
The [MIT License](./LICENSE.md) is used by this project.
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc