Socket
Socket
Sign inDemoInstall

postcss-nesting

Package Overview
Dependencies
Maintainers
3
Versions
61
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

postcss-nesting - npm Package Compare versions

Comparing version 12.0.1 to 12.0.2

415

CHANGELOG.md
# Changes to PostCSS Nesting
### 12.0.2
_December 15, 2023_
- Fix type definitions
- Updated [`@csstools/selector-specificity`](https://github.com/csstools/postcss-plugins/tree/main/packages/selector-specificity) to [`3.0.1`](https://github.com/csstools/postcss-plugins/tree/main/packages/selector-specificity/CHANGELOG.md#301) (patch)
### 12.0.1

@@ -16,408 +23,2 @@

### 11.3.0
_June 14, 2023_
- Add support for nested selectors that that begin with a letter
- Add warning when using the deprecated `@nest` rule
- you can silence this warning with a new `silenceAtNestWarning` plugin option
- you can migrate your code to the latest syntax with our [Stylelint Plugin](https://github.com/csstools/postcss-plugins/tree/main/plugins-stylelint/no-at-nest-rule#csstoolsstylelint-no-at-nest-rule)
### 11.2.2
_March 25, 2023_
- Improved: support for mixins
### 11.2.1
_February 16, 2023_
- Skip nested rules that have a selector that begins with a letter
- Better warning when nested rules have a selector that begins with a letter
### 11.2.0
_February 13, 2023_
- Added: support for `&` at the root
- Improved: support for mixins
### 11.1.0
_January 31, 2023_
- Implement latest specification
- relative selector syntax
- `@nest` is obsolete, all selectors can be written without it (sometimes you will need `:is()`)
- allow declarations after nested rules.
⚠️ We advice everyone to migrate their codebase **now** to nested CSS without `@nest`.
Future versions of this plugin will warn and then error on `@nest`.
### 11.0.1
_January 28, 2023_
- Improve `types` declaration in `package.json`
### 11.0.0
_January 24, 2023_
- Updated: Support for Node v14+ (major).
- Fix: Do not throw when a selector is invalid, show a warning instead.
- Removed: Support for Deno (breaking)
### 10.2.0
_September 14, 2022_
- Added: TypeScript typings
### 10.1.10
_June 30, 2022_
- Partially revert the changes to pseudo element selectors from 10.1.9.
```diff
.anything::before {
@nest .something_else > & {
order: 1;
}
}
/* becomes */
- .something_else > :is(.anything::before) { /* 10.1.9 */
+ .something_else > .anything::before { /* previous and restored behavior */
order: 1;
}
```
The exact behavior of this pattern is unspecified and might change in the future.
We are reverting to the previous behavior until the specification is clarified.
### 10.1.9
_June 23, 2022_
- Fix selector order with any pseudo element.
- Fix semicolons being removed [#497](https://github.com/csstools/postcss-plugins/issues/497).
### 10.1.8
_June 4, 2022_
- Update `@csstools/selector-specificity` (major)
### 10.1.7
_May 20, 2022_
- Add tentative support for `@layer`. The actual behavior is poorly defined and may change in the future. Use with caution.
### 10.1.6
_May 17, 2022_
- Fix selector order with `:before` and other pseudo elements.
### 10.1.5
_May 11, 2022_
- Use `@csstools/selector-specificity` for specificity calculations.
### 10.1.4
_April 4, 2022_
- Improved : compound selector order with pseudo elements
- Improved : selector specificity calculation.
### 10.1.3
_March 4, 2022_
- Avoid creating duplicate selectors containing only comments.
```diff
.alpha {
/* loose comment */
& .beta {
order: 1;
}
}
/* becomes */
- .alpha {
- /* loose comment */
- }
+ /* loose comment */
.alpha .beta {
order: 1;
}
```
### 10.1.2
_January 12, 2022_
- Improved : selector specificity calculation
### 10.1.1
_January 2, 2022_
- Removed Sourcemaps from package tarball.
- Moved CLI to CLI Package. See [announcement](https://github.com/csstools/postcss-plugins/discussions/121).
### 10.1.0
_December 22, 2021_
- Added: `noIsPseudoSelector` plugin option.
- Changed: `:is()` pseudo is now avoided as much as possible by default.
- Updated: documentation
[more info on noIsPseudoSelector](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-nesting#noispseudoselector)
```js
postcssNesting({
noIsPseudoSelector: true
})
```
### 10.0.3
_December 13, 2021_
- Updated: documentation
### 10.0.2
_November 18, 2021_
- Fixed: Support for Deno. Ensuring we pack `mod.js` so it can be accessible by CDNs.
### 10.0.1
_November 17, 2021_
- Removed: Support for `allowDeclarationsAfterNestedRules`.
We've realised that enforcing this rule from the spec was going to be problematic
in the long run given how plugins work and the whole ecosystem around mixins and
other features. Treating this as a patch given that this was introduced in the
previous version and was starting to break projects that were using other features.
### 10.0.0
_November 16, 2021_
- Added: Support for `allowDeclarationsAfterNestedRules` to deviate from spec.
- Added: `.npmrc` file.
- Updated: Aligning completely with the [spec](https://www.w3.org/TR/css-nesting-1/) updates.
- Updated: `esbuild` to 0.13.12 (minor)
- Removed: Support for PostCSS 7
### 9.0.0
_October 27, 2021_
- Added: Support for Deno
- Fixed: Issue with PostCSS 8 compatibility using the RuleExit listener
### 8.0.1
_May 1, 2021_
- Fixed: Compatibility issue with CommonJS.
### 8.0.0
_April 26, 2021_
- Updated: Support for PostCSS 8+.
- Updated: Support for Node v12+.
- Updated: Support for the `@container` at-rule.
### 7.0.1
_July 29, 2018_
- Fixed: Non-breaking issue with rules being unnecessarily split
### 7.0.0
_September 17, 2018_
- Updated: Support for PostCSS v7+
- Updated: Support for Node v6+
In a comment, a CSSWG member expressed interest in handling nested `@media`
while handling selector nesting. Since the specification has yet to be added
to the official CSSWG repository, nested at-rule deprecation is further delayed.
### 6.0.0
_June 9, 2018_
- Deprecated: Nested at-rules like `@media` will no longer work in 7.0.0
- Refactored code to improve efficiency
### 5.0.0
_March 24, 2018_
- Refactored code to use Imports babel-transformed for Node v4 compatibility
### 4.2.1
_September 19, 2017_
- Updated: Exposing the transform function as its own for postcss-extend
### 4.2.0
_September 18, 2017_
- Added: Reduced splitting of rules
### 4.1.0
_August 19, 2017_
- Added: Mutation-safe walk method
- Improved: Complex selector validity testing
- Thanks: A special thanks to @JLHwung for these improvements
### 4.0.1
_May 22, 2017_
- Improved: Selector validity testing
### 4.0.0
_May 20, 2017_
- Changed: Transform only compliant nesting
- Added: Preserve more raws formatting
### 3.0.0
_May 8, 2017_
- Added: Node 4.x support
- Added: PostCSS 6 support
- Added: Preserved ordering
- Removed: Node 0.12 support
### 2.3.1
_March 16, 2016_
- Updated: Allow any direct nesting that follows the syntactic constraints
- Updated: PostCSS 5.0.6
- Updated: Tests
- Updated: Dependencies
- Updated: Project configuration
### 2.3.0
_February 20, 2016_
- Updated: JavaScript formatting, linting, tests, and documentation
- Updated: Properly concatenate at-rules with or expressions
- Updated: Update internal plugin name to postcss-nesting
### 2.2.0
_January 30, 2016_
- Added: Nesting of all at-rules
- Updated: Direct nesting order maintains order
- Updated: Tests and documentation
### 2.1.1
_January 3, 2016_
- Updated: Project conventions
### 2.1.0
_January 3, 2016_
- Added: Support for valid direct nesting
### 2.0.6
_October 15, 2015_
- Fixed: Issue with new PostCSS rules
### 2.0.5
_October 12, 2015_
- Updated: Nested rules source map to the parent rule
- Updated: PostCSS 5.0.9
- Updated: Tests and documentation
- Updated: Project configuration
### 2.0.4
_September 23, 2015_
- Updated: Map source raws
### 2.0.3
_September 22, 2015_
- Updated: Refactored plugin
- Updated: Tests
- Updated: PostCSS 5.0.6
### 2.0.2
_September 16, 2015_
- Fixed: Issue where the new rule’s children were not mapped to the parent internally
### 2.0.1
_September 16, 2015_
- Fixed: Issue where a `@nest` rule followed by another bubbling at-rule would not bubble
- Added: CONTRIBUTING.md
### 2.0.0
_September 16, 2015_
- Added: Requirement of `&` per the specification
- Added: New prefix option
- Added: `@document` and `@supports` as bubbles
- Updated: Documentation
### 1.0.0
_September 15, 2015_
- Added: New `@nest` at-rule syntax
- Updated: PostCSS 5
- Removed: Old inner bracket syntax
### 0.1.0
_June 17, 2015_
- Added: Initial release
[Full CHANGELOG](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-nesting/CHANGELOG.md)

10

dist/index.d.ts
import type { PluginCreator } from 'postcss';
declare const creator: PluginCreator<pluginOptions>;
export default creator;
/** postcss-nesting plugin options */
export type pluginOptions = {
export declare type pluginOptions = {
/** Avoid the `:is()` pseudo class as much as possible. default: false */

@@ -9,3 +13,3 @@ noIsPseudoSelector?: boolean;

};
declare const creator: PluginCreator<pluginOptions>;
export default creator;
export { }
{
"name": "postcss-nesting",
"description": "Nest rules inside each other in CSS",
"version": "12.0.1",
"version": "12.0.2",
"contributors": [

@@ -34,5 +34,5 @@ {

},
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"jsdelivr": "dist/index.mjs",

@@ -42,6 +42,9 @@ "unpkg": "dist/index.mjs",

".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"default": "./dist/index.mjs"
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
},
"require": {
"default": "./dist/index.cjs"
}
}

@@ -56,3 +59,3 @@ },

"dependencies": {
"@csstools/selector-specificity": "^3.0.0",
"@csstools/selector-specificity": "^3.0.1",
"postcss-selector-parser": "^6.0.13"

@@ -63,15 +66,2 @@ },

},
"devDependencies": {
"@csstools/postcss-tape": "*",
"puppeteer": "^21.0.1"
},
"scripts": {
"build": "rollup -c ../../rollup/default.mjs",
"docs": "node ../../.github/bin/generate-docs/install.mjs && node ../../.github/bin/generate-docs/readme.mjs",
"lint": "node ../../.github/bin/format-package-json.mjs",
"prepublishOnly": "npm run build && npm run test",
"test": "node .tape.mjs && node ./test/_import.mjs && node ./test/_require.cjs",
"test:browser": "node ./test/_browser.mjs",
"test:rewrite-expects": "REWRITE_EXPECTS=true node .tape.mjs"
},
"homepage": "https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-nesting#readme",

@@ -101,12 +91,3 @@ "repository": {

"w3c"
],
"csstools": {
"cssdbId": "nesting-rules",
"exportName": "postcssNesting",
"humanReadableName": "PostCSS Nesting",
"specUrl": "https://www.w3.org/TR/css-nesting-1/"
},
"volta": {
"extends": "../../package.json"
}
]
}

@@ -5,2 +5,6 @@ # PostCSS Nesting [<img src="https://postcss.github.io/postcss/logo.svg" alt="PostCSS Logo" width="90" height="90" align="right">][PostCSS]

```bash
npm install postcss-nesting --save-dev
```
[PostCSS Nesting] lets you nest style rules inside each other, following the [CSS Nesting specification].

@@ -7,0 +11,0 @@

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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