@sumotto/configs 0.0.26 → 0.0.28

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.
@@ -1,4 +1,4 @@
1
- const globby = require( 'globby' );
1
+ const glob = require( 'glob' );
2
2
  const rimraf = require( 'rimraf' );
3
3
 
4
4
  let isRunning = false;
@@ -28,7 +28,7 @@ class CleanWebpackPlugin {
28
28
  }
29
29
 
30
30
  del() {
31
- globby.sync( this.patterns ).forEach( ( file ) => {
31
+ glob.sync( this.patterns ).forEach( ( file ) => {
32
32
  rimraf.sync( file, { glob: false } );
33
33
  } );
34
34
  }
package/package.json CHANGED
@@ -1,9 +1,10 @@
1
1
  {
2
2
  "name": "@sumotto/configs",
3
- "version": "0.0.26",
3
+ "version": "0.0.28",
4
4
  "description": "Configs for my work",
5
5
  "scripts": {
6
- "release": "np --yolo"
6
+ "release": "np --yolo",
7
+ "update": "npx npm-check-updates --interactive"
7
8
  },
8
9
  "repository": {
9
10
  "type": "git",
@@ -27,14 +28,13 @@
27
28
  "wp/*"
28
29
  ],
29
30
  "dependencies": {
30
- "@wordpress/scripts": "^28.5.0",
31
+ "@wordpress/scripts": "^30.3.0",
31
32
  "copy-webpack-plugin": "^12.0.2",
32
33
  "dotenv": "^16.4.5",
33
34
  "find-free-port-sync": "^1.0.0",
34
35
  "glob": "^11.0.0",
35
- "globby": "^14.0.2",
36
36
  "image-minimizer-webpack-plugin": "^4.1.0",
37
- "mini-css-extract-plugin": "^2.9.0",
37
+ "mini-css-extract-plugin": "^2.9.1",
38
38
  "rimraf": "^6.0.1",
39
39
  "rtlcss-webpack-plugin": "^4.0.7",
40
40
  "svgo": "^3.3.2",