Socket
Socket
Sign inDemoInstall

postcss-overflow-shorthand

Package Overview
Dependencies
Maintainers
3
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

postcss-overflow-shorthand - npm Package Compare versions

Comparing version 5.0.0 to 5.0.1

64

CHANGELOG.md
# Changes to PostCSS Overflow Shorthand
### 5.0.1
_December 15, 2023_
- Fix type definitions
### 5.0.0

@@ -15,58 +21,2 @@

### 4.0.0
_January 24, 2023_
- Updated: Support for Node v14+ (major).
- Added: TypeScript support.
### 3.0.4
_July 8, 2022_
- Fix case insensitive matching.
### 3.0.3
_February 5, 2022_
- Improved `es module` and `commonjs` compatibility
### 3.0.2
_January 2, 2022_
- Removed Sourcemaps from package tarball.
- Moved CLI to CLI Package. See [announcement](https://github.com/csstools/postcss-plugins/discussions/121).
### 3.0.1
_December 13, 2021_
- Updated: documentation
### 3.0.0
_September 17, 2021_
- Updated: Support for PostCS 8+ (major).
- Updated: Support for Node 12+ (major).
### 2.0.0
_September 17, 2018_
- Updated: Support for PostCSS v7+
- Updated: Support for Node v6+
### 1.0.1
_May 8, 2018_
- Fixed: Single `overflow` values previously being parsed
### 1.0.0
_April 30, 2018_
- Initial version
[Full CHANGELOG](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-overflow-shorthand/CHANGELOG.md)

10

dist/index.d.ts
import type { PluginCreator } from 'postcss';
declare const creator: PluginCreator<pluginOptions>;
export default creator;
/** postcss-overflow-shorthand plugin options */
export type pluginOptions = {
export declare type pluginOptions = {
/** Preserve the original notation. default: true */
preserve?: boolean;
};
declare const creator: PluginCreator<pluginOptions>;
export default creator;
export { }
{
"name": "postcss-overflow-shorthand",
"description": "Use the overflow shorthand in CSS",
"version": "5.0.0",
"version": "5.0.1",
"contributors": [

@@ -34,11 +34,14 @@ {

},
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"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"
}
}

@@ -58,13 +61,2 @@ },

},
"devDependencies": {
"@csstools/postcss-tape": "*"
},
"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:rewrite-expects": "REWRITE_EXPECTS=true node .tape.mjs"
},
"homepage": "https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-overflow-shorthand#readme",

@@ -85,12 +77,3 @@ "repository": {

"values"
],
"csstools": {
"cssdbId": "overflow-property",
"exportName": "postcssOverflowShorthand",
"humanReadableName": "PostCSS Overflow Shorthand",
"specUrl": "https://drafts.csswg.org/css-overflow/#propdef-overflow"
},
"volta": {
"extends": "../../package.json"
}
]
}

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

```bash
npm install postcss-overflow-shorthand --save-dev
```
[PostCSS Overflow Shorthand] lets you use the `overflow` shorthand in CSS,

@@ -7,0 +11,0 @@ following the [CSS Overflow] specification.

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