Commit
Author: Adam Argyle [atom@argyleink.com]
Hash: 1e2bbc06c1353be844dd3f47aee6bea9b56ea8d2
Timestamp: Thu, 18 Nov 2021 05:35:50 +0000 (3 years ago)

+0 -3 +/-2 browse
remove postcss easings dep
1diff --git a/package.json b/package.json
2index 76903f9..1cd1314 100644
3--- a/package.json
4+++ b/package.json
5 @@ -67,7 +67,6 @@
6 "postcss": "^8.3.9",
7 "postcss-cli": "^8.3.1",
8 "postcss-combine-duplicated-selectors": "^10.0.3",
9- "postcss-easings": "3.x",
10 "postcss-import": "^14.0.2",
11 "postcss-preset-env": "6.7.x"
12 }
13 diff --git a/postcss.config.cjs b/postcss.config.cjs
14index 2a4d220..f219c00 100644
15--- a/postcss.config.cjs
16+++ b/postcss.config.cjs
17 @@ -1,5 +1,4 @@
18 const postcssPresetEnv = require('postcss-preset-env')
19- const postcssEasings = require('postcss-easings')
20 const postcssImport = require('postcss-import')
21 const cssnano = require('cssnano')
22 const combineSelectors = require('postcss-combine-duplicated-selectors')
23 @@ -11,7 +10,6 @@ const inlineMediaQueries = lib === 'lib:media' || lib === 'lib:supports'
24
25 module.exports = {
26 plugins: [
27- postcssEasings(),
28 postcssImport(),
29 postcssPresetEnv({
30 stage: 0,