@csstools/postcss-exponential-functions 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changes to PostCSS Exponential Functions
2
2
 
3
+ ### 1.0.1
4
+
5
+ _September 24, 2023_
6
+
7
+ - Updated [`@csstools/css-tokenizer`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-tokenizer) to [`2.2.1`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-tokenizer/CHANGELOG.md#221) (patch)
8
+ - Updated [`@csstools/css-parser-algorithms`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-parser-algorithms) to [`2.3.2`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-parser-algorithms/CHANGELOG.md#232) (patch)
9
+ - Updated [`@csstools/css-calc`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-calc) to [`1.1.4`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-calc/CHANGELOG.md#114) (patch)
10
+
3
11
  ### 1.0.0
4
12
 
5
13
  _July 24, 2023_
package/README.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  [<img alt="npm version" src="https://img.shields.io/npm/v/@csstools/postcss-exponential-functions.svg" height="20">][npm-url] [<img alt="CSS Standard Status" src="https://cssdb.org/images/badges/exponential-functions.svg" height="20">][css-url] [<img alt="Build Status" src="https://github.com/csstools/postcss-plugins/workflows/test/badge.svg" height="20">][cli-url] [<img alt="Discord" src="https://shields.io/badge/Discord-5865F2?logo=discord&logoColor=white">][discord]
4
4
 
5
+ ```bash
6
+ npm install @csstools/postcss-exponential-functions --save-dev
7
+ ```
8
+
5
9
  [PostCSS Exponential Functions] lets you use the `pow()`, `sqrt()`, `hypot()`, `log()`, `exp()` functions following the [CSS Values 4 Specification].
6
10
 
7
11
  ```pcss
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@csstools/postcss-exponential-functions",
3
3
  "description": "Use pow(), sqrt(), hypot(), log(), exp() exponential functions in CSS",
4
- "version": "1.0.0",
4
+ "version": "1.0.1",
5
5
  "contributors": [
6
6
  {
7
7
  "name": "Antonio Laguna",
@@ -45,9 +45,9 @@
45
45
  "dist"
46
46
  ],
47
47
  "dependencies": {
48
- "@csstools/css-calc": "^1.1.3",
49
- "@csstools/css-parser-algorithms": "^2.3.1",
50
- "@csstools/css-tokenizer": "^2.2.0"
48
+ "@csstools/css-calc": "^1.1.4",
49
+ "@csstools/css-parser-algorithms": "^2.3.2",
50
+ "@csstools/css-tokenizer": "^2.2.1"
51
51
  },
52
52
  "peerDependencies": {
53
53
  "postcss": "^8.4"
@@ -71,7 +71,13 @@
71
71
  },
72
72
  "bugs": "https://github.com/csstools/postcss-plugins/issues",
73
73
  "keywords": [
74
- "postcss-plugin"
74
+ "exp",
75
+ "exponential",
76
+ "hypot",
77
+ "log",
78
+ "postcss-plugin",
79
+ "pow",
80
+ "sqrt"
75
81
  ],
76
82
  "csstools": {
77
83
  "cssdbId": "exponential-functions",