Skip to content

Commit 4c0032e

Browse files
committed
Update package overrides
1 parent 8df2a5e commit 4c0032e

File tree

4 files changed

+33
-17
lines changed

4 files changed

+33
-17
lines changed

.config/rollup.base.config.mjs

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,11 @@ const require = createRequire(import.meta.url)
4545
const ts = require('rollup-plugin-ts')
4646

4747
const rootPackageJson = require(rootPackageJsonPath)
48-
const { dependencies: pkgDeps, devDependencies: pkgDevDeps } = rootPackageJson
48+
const {
49+
dependencies: pkgDeps,
50+
devDependencies: pkgDevDeps,
51+
overrides: pkgOverrides
52+
} = rootPackageJson
4953

5054
const builtinAliases = builtinModules.reduce((o, n) => {
5155
o[n] = `node:${n}`
@@ -114,7 +118,7 @@ export default function baseConfig(extendConfig = {}) {
114118
}
115119
const id = normalizeId(id_)
116120
const name = getPackageName(id)
117-
if (isBlessedPackageName(name)) {
121+
if (pkgOverrides[name] || isBlessedPackageName(name)) {
118122
return true
119123
}
120124
if (

.dep-stats.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@
4444
"open": "^10.1.0",
4545
"run-applescript": "^7.0.0",
4646
"terminal-link": "^3.0.0",
47-
"tiny-colors": "^2.0.2",
4847
"tiny-updater": "^3.5.2",
4948
"when-exit": "^2.1.1"
5049
},
@@ -62,12 +61,9 @@
6261
"hpagent": "^1.2.0",
6362
"ignore": "^6.0.2",
6463
"micromatch": "^4.0.8",
65-
"npm-package-arg": "^12.0.0",
6664
"pony-cause": "^2.1.11",
67-
"semver": "^7.6.3",
6865
"tinyglobby": "^0.2.10",
6966
"which": "^5.0.0",
70-
"yaml": "^2.6.1",
7167
"yargs-parser": "^21.1.1",
7268
"yoctocolors-cjs": "^2.1.2"
7369
},

package-lock.json

Lines changed: 23 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,8 @@
186186
"semver": "$semver",
187187
"set-function-length": "npm:@socketregistry/set-function-length@^1",
188188
"side-channel": "npm:@socketregistry/side-channel@^1",
189+
"tiny-colors": "$yoctocolors-cjs",
190+
"typedarray": "npm:@socketregistry/typedarray@^1",
189191
"yaml": "$yaml"
190192
},
191193
"resolutions": {
@@ -209,6 +211,8 @@
209211
"semver": "^7.6.3",
210212
"set-function-length": "npm:@socketregistry/set-function-length@^1",
211213
"side-channel": "npm:@socketregistry/side-channel@^1",
214+
"tiny-colors": "npm:yoctocolors-cjs@^2.1.2",
215+
"typedarray": "npm:@socketregistry/typedarray@^1",
212216
"yaml": "^2.6.0"
213217
},
214218
"engines": {

0 commit comments

Comments
 (0)