@csstools/postcss-trigonometric-functions 3.0.1 → 3.0.2

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 Trigonometric Functions
2
2
 
3
+ ### 3.0.2
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
  ### 3.0.1
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-trigonometric-functions.svg" height="20">][npm-url] [<img alt="CSS Standard Status" src="https://cssdb.org/images/badges/trigonometric-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-trigonometric-functions --save-dev
7
+ ```
8
+
5
9
  [PostCSS Trigonometric Functions] lets you use `sin`, `cos`, `tan`, `asin`, `acos`, `atan` and `atan2` to be able to compute trigonometric relationships 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-trigonometric-functions",
3
3
  "description": "Use sin(), cos(), tan(), acos(), atan(), and atan2() to compute trigonometric relationships",
4
- "version": "3.0.1",
4
+ "version": "3.0.2",
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"