Skip to content

Commit

Permalink
CommonJS fixes and better imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikan Radan committed Jan 4, 2025
1 parent 7f55864 commit eebdda2
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 29 deletions.
48 changes: 23 additions & 25 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions packages/scripts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,14 +70,14 @@
"minimist": "^1.2.8",
"npm-package-json-lint": "^8.0.0",
"npm-packlist": "^10.0.0",
"package-up": "npm:@smushytaco/package-up@^1.0.0",
"package-up": "npm:@smushytaco/package-up@^1.0.1",
"picocolors": "^1.1.1",
"postcss": "^8.4.49",
"postcss-loader": "^8.1.1",
"prettier": "npm:[email protected]",
"puppeteer-core": "^23.11.1",
"react-refresh": "^0.16.0",
"read-package-up": "npm:@smushytaco/read-package-up@^1.0.0",
"read-package-up": "npm:@smushytaco/read-package-up@^1.0.1",
"resolve-bin": "^1.0.1",
"rtlcss-webpack-plugin": "npm:@smushytaco/rtlcss-webpack-plugin@^1.0.7",
"sass": "^1.83.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/scripts/scripts/format.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* External dependencies
*/
const { exit, stdout } = require( 'process' );
const { exit, stdout } = require( 'node:process' );

/**
* External dependencies
Expand Down
2 changes: 1 addition & 1 deletion packages/scripts/scripts/plugin-zip.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const AdmZip = require( 'adm-zip' );
const { sync: glob } = require( 'fast-glob' );
const { sync: packlist } = require( 'npm-packlist' );
const { dirname } = require( 'path' );
const { stdout } = require( 'process' );
const { stdout } = require( 'node:process' );

/**
* Internal dependencies
Expand Down

0 comments on commit eebdda2

Please sign in to comment.