File tree Expand file tree Collapse file tree 3 files changed +1
-4
lines changed Expand file tree Collapse file tree 3 files changed +1
-4
lines changed Original file line number Diff line number Diff line change 34
34
},
35
35
"scripts" : {
36
36
"build" : " npm run build:cssprops && tsc --build && rollup -c rollup.config.js" ,
37
- "build:cssprops" : " npm run postcss:convert && npm run postcss:colors && npm run custom-properties-cache" ,
37
+ "build:cssprops" : " npm run postcss:convert && npm run custom-properties-cache" ,
38
38
"postcss:convert" : " postcss lib/custom-properties.css -o dist/custom-properties.css" ,
39
- "postcss:colors" : " postcss dist/custom-properties.css -u postcss-color-function -o dist/custom-properties.css" ,
40
39
"clean" : " tsc --build --clean && rimraf -g dist lib/*.js lib/**/*.js *.tgz lib/**/*.d.ts custom-elements.json custom-properties.*" ,
41
40
"analyze" : " web-component-analyzer **/*.element.ts --outFile custom-elements.json" ,
42
41
"custom-properties-cache" : " node ./scripts/update-custom-properties-cache.js"
Original file line number Diff line number Diff line change 2
2
const config = {
3
3
plugins : [
4
4
require ( 'postcss-advanced-variables' ) ,
5
- require ( 'postcss-color-function' ) ,
6
5
require ( 'postcss-url' ) ,
7
6
require ( 'autoprefixer' ) ,
8
7
] ,
Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ module.exports = () => {
2
2
return {
3
3
plugins : {
4
4
'postcss-advanced-variables' : { } ,
5
- 'postcss-color-function' : { } ,
6
5
} ,
7
6
} ;
8
7
} ;
You can’t perform that action at this time.
0 commit comments