Skip to content

Commit

Permalink
swap out unmaintained package to update clean-css (#42)
Browse files Browse the repository at this point in the history
Fixes #39
  • Loading branch information
cr0ybot authored May 12, 2023
1 parent e2e879c commit 63869c0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
},
"scripts": {},
"dependencies": {
"@aptuitiv/gulp-clean-css": "^4.4.3",
"@martin-pettersson/wp-get-file-data": "^0.1.1",
"@wordpress/scripts": "^26.4.0",
"ansi-colors": "^4.1.3",
Expand All @@ -57,7 +58,6 @@
"dotenv": "^16.0.3",
"glob": "^10.2.3",
"gulp": "^4.0.2",
"gulp-clean-css": "^4.3.0",
"gulp-debug": "^4.0.0",
"gulp-dedupe": "github:hoho/gulp-dedupe#468dabc327b8f450cdafe5f2cab457a1293b9057",
"gulp-dependents": "^1.2.5",
Expand Down
4 changes: 2 additions & 2 deletions tasks/styles.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

// External
const autoprefixer = require( 'autoprefixer' );
const cleanCSS = require( 'gulp-clean-css' );
const cleanCSS = require( '@aptuitiv/gulp-clean-css' );
const filter = require( 'gulp-filter' );
const glob = require( 'glob' );
const postcss = require( 'gulp-postcss' );
Expand Down Expand Up @@ -78,7 +78,7 @@ module.exports = {
.sync( {
includePaths,
indentType: 'tab',
outputStype: 'expanded',
outputStyle: 'expanded',
importer: jsonImporter( {
convertCase: true,
} ),
Expand Down

0 comments on commit 63869c0

Please sign in to comment.