@kitschpatrol/repo-config 5.7.2 → 5.7.3
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/bin/cli.js +1 -1
- package/init/.vscode/settings.json +2 -0
- package/package.json +2 -2
- package/readme.md +1 -1
package/bin/cli.js
CHANGED
|
@@ -11084,7 +11084,7 @@ var Yargs = YargsFactory(esm_default);
|
|
|
11084
11084
|
var yargs_default = Yargs;
|
|
11085
11085
|
|
|
11086
11086
|
// ../../package.json
|
|
11087
|
-
var version = "5.7.
|
|
11087
|
+
var version = "5.7.3";
|
|
11088
11088
|
|
|
11089
11089
|
// ../../src/execa-utilities.ts
|
|
11090
11090
|
function isErrorExecaError(error) {
|
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
"explorer.fileNesting.enabled": true,
|
|
3
3
|
"explorer.fileNesting.expand": false,
|
|
4
4
|
"explorer.fileNesting.patterns": {
|
|
5
|
+
"*.js": "*.ts.map, *.js.map, *.d.ts, *.d.ts.map, *.d.js.map",
|
|
6
|
+
"*.ts": "*.ts.map, *.d.ts, *.d.ts.map",
|
|
5
7
|
".env": ".env.*",
|
|
6
8
|
"package.json": ".*ignore, .*rc, .*.js, .*.mjs, .*.cjs, .*.ts, .*.mts, .*.cts, .*.json, .*.jsonc, .*.json5, .*.yml, .*.yaml, *config.js, *config.mjs, *config.cjs, *config.ts, *config.mts, *config.cts, *config.json, *config.jsonc, *config.json5, *config.yml, *config.yaml, pnpm*, workspace*, yarn*, lerna.json, netlify.toml, package-lock.json, turbo.json, vercel.json, wrangler.toml, yarn.lock",
|
|
7
9
|
"readme.md": "authors*, backers*, changelog*, citation*, code_of_conduct*, contributing*, contributors*, copying*, credits*, governance*, history*, license*, maintainers*, release_notes*, security*, sponsors*"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kitschpatrol/repo-config",
|
|
3
|
-
"version": "5.7.
|
|
3
|
+
"version": "5.7.3",
|
|
4
4
|
"description": "Repository configuration and GitHub workflows for @kitschpatrol/shared-config.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"shared-config",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@pinojs/json-colorizer": "^4.0.0",
|
|
36
36
|
"cosmiconfig": "^9.0.0",
|
|
37
|
-
"cosmiconfig-typescript-loader": "^6.
|
|
37
|
+
"cosmiconfig-typescript-loader": "^6.2.0",
|
|
38
38
|
"execa": "^9.6.0",
|
|
39
39
|
"find-workspaces": "^0.3.1",
|
|
40
40
|
"fs-extra": "^11.3.2",
|
package/readme.md
CHANGED
|
@@ -51,7 +51,7 @@ In order to work around some hoisting issues related to plugin resolution in the
|
|
|
51
51
|
If you just need to set up your `.npmrc` in anticipation of installing another shared config, you can run the script via `dlx` to copy the `.npmrc` to your home folder:
|
|
52
52
|
|
|
53
53
|
```sh
|
|
54
|
-
pnpm
|
|
54
|
+
pnpm --package=@kitschpatrol/repo-config dlx ksc-repo init
|
|
55
55
|
```
|
|
56
56
|
|
|
57
57
|
### Installation approach
|