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 3434 },
3535 "scripts" : {
3636 "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" ,
3838 "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" ,
4039 "clean" : " tsc --build --clean && rimraf -g dist lib/*.js lib/**/*.js *.tgz lib/**/*.d.ts custom-elements.json custom-properties.*" ,
4140 "analyze" : " web-component-analyzer **/*.element.ts --outFile custom-elements.json" ,
4241 "custom-properties-cache" : " node ./scripts/update-custom-properties-cache.js"
Original file line number Diff line number Diff line change 22const config = {
33 plugins : [
44 require ( 'postcss-advanced-variables' ) ,
5- require ( 'postcss-color-function' ) ,
65 require ( 'postcss-url' ) ,
76 require ( 'autoprefixer' ) ,
87 ] ,
Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ module.exports = () => {
22 return {
33 plugins : {
44 'postcss-advanced-variables' : { } ,
5- 'postcss-color-function' : { } ,
65 } ,
76 } ;
87} ;
You can’t perform that action at this time.
0 commit comments