@plaudit/pnpm-plugin-plaudit-config 1.6.0 → 1.7.0

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.
package/CHANGELOG.md CHANGED
@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [1.7.0] - 2026-05-11
9
+ ### Added
10
+ - `fs-ext-extra-prebuilt` to the list of packages with denied build scripts
11
+ - Thanks WordPress!
12
+
8
13
  ## [1.6.0] - 2026-05-04
9
14
  ### Added
10
15
  - `minimatch@^9` to the list of overrides
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plaudit/pnpm-plugin-plaudit-config",
3
- "version": "1.6.0",
3
+ "version": "1.7.0",
4
4
  "license": "SEE LICENSE IN LICENSE.md",
5
5
  "files": [
6
6
  "./patches",
@@ -11,7 +11,7 @@
11
11
  ],
12
12
  "sideEffects": false,
13
13
  "devDependencies": {
14
- "@pnpm/hooks.pnpmfile": "^1100.0.4",
14
+ "@pnpm/hooks.pnpmfile": "^1100.0.6",
15
15
  "@pnpm/types": "^1101.0.0",
16
16
  "typescript": "^6.0.3"
17
17
  },
package/pnpmfile.cjs CHANGED
@@ -39,9 +39,10 @@ module.exports = {
39
39
  const mergeableConfig = config.rootProjectManifest?.pnpm ?? {};
40
40
  return Object.assign(config, {
41
41
  allowBuilds: {
42
+ "@parcel/watcher": false,
42
43
  "core-js": true,
43
44
  "core-js-pure": true,
44
- "@parcel/watcher": false,
45
+ "fs-ext-extra-prebuilt": false,
45
46
  "unrs-resolver": false,
46
47
  ...Object.fromEntries((mergeableConfig.onlyBuiltDependencies ?? []).map(dep => [dep, true])),
47
48
  ...Object.fromEntries((mergeableConfig.ignoredBuiltDependencies ?? []).map(dep => [dep, false])),