@yarn-tool/static-file 1.0.75 → 1.0.79
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 +45 -0
- package/file/gitignore +64 -0
- package/file/lerna.json.tpl +3 -0
- package/file/npmignore +28 -0
- package/file/tsc-multi.json.tpl +6 -0
- package/file/tsconfig.tsdx.json.tpl +6 -0
- package/lib/const.d.ts +1 -1
- package/lib/const.js +2 -0
- package/lib/const.js.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,51 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [1.0.79](https://github.com/bluelovers/ws-yarn-workspaces/compare/@yarn-tool/static-file@1.0.78...@yarn-tool/static-file@1.0.79) (2021-12-07)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### 🔖 Miscellaneous
|
|
10
|
+
|
|
11
|
+
* . ([6383bf8](https://github.com/bluelovers/ws-yarn-workspaces/commit/6383bf803e111d57606ac74e994372df1e11d23f))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## [1.0.78](https://github.com/bluelovers/ws-yarn-workspaces/compare/@yarn-tool/static-file@1.0.77...@yarn-tool/static-file@1.0.78) (2021-12-06)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### ✨ Features
|
|
21
|
+
|
|
22
|
+
* mts cts ([15e3a9e](https://github.com/bluelovers/ws-yarn-workspaces/commit/15e3a9e756ce144a16f6410309ba83aa82a16ec8))
|
|
23
|
+
* update tsdx ([c46cfb0](https://github.com/bluelovers/ws-yarn-workspaces/commit/c46cfb054238f238c1a6735cb8b6b9b3ac09728a))
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
## [1.0.77](https://github.com/bluelovers/ws-yarn-workspaces/compare/@yarn-tool/static-file@1.0.76...@yarn-tool/static-file@1.0.77) (2021-11-28)
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
### ✨ Features
|
|
33
|
+
|
|
34
|
+
* add `tsconfig.tsdx.json.tpl` ([d53c748](https://github.com/bluelovers/ws-yarn-workspaces/commit/d53c748ff24d6c302badf8323acf4bf6a3933d50))
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
## [1.0.76](https://github.com/bluelovers/ws-yarn-workspaces/compare/@yarn-tool/static-file@1.0.75...@yarn-tool/static-file@1.0.76) (2021-10-27)
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
### ✨ Features
|
|
44
|
+
|
|
45
|
+
* add ignore snowpack ([336478c](https://github.com/bluelovers/ws-yarn-workspaces/commit/336478c31e1ab17114798589ff7a7f4e72b998f9))
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
|
|
6
51
|
## [1.0.75](https://github.com/bluelovers/ws-yarn-workspaces/compare/@yarn-tool/static-file@1.0.73...@yarn-tool/static-file@1.0.75) (2021-10-13)
|
|
7
52
|
|
|
8
53
|
|
package/file/gitignore
CHANGED
|
@@ -68,6 +68,60 @@ bin/**/*.d.ts
|
|
|
68
68
|
/packages/*/tests/*.js
|
|
69
69
|
/packages/*/tests/*.d.ts
|
|
70
70
|
/packages/*/tests/temp*
|
|
71
|
+
|
|
72
|
+
test/**/*.mjs
|
|
73
|
+
test/**/*.d.mts
|
|
74
|
+
test/*.mjs
|
|
75
|
+
test/*.d.mts
|
|
76
|
+
test/temp*
|
|
77
|
+
test/**/*.map
|
|
78
|
+
tests/**/*.mjs
|
|
79
|
+
tests/**/*.d.mts
|
|
80
|
+
tests/*.mjs
|
|
81
|
+
tests/*.d.mts
|
|
82
|
+
tests/temp*
|
|
83
|
+
tests/**/*.map
|
|
84
|
+
bin/*.d.mts
|
|
85
|
+
bin/**/*.d.mts
|
|
86
|
+
/packages/*/bin/*.d.mts
|
|
87
|
+
/packages/*/test/**/*.mjs
|
|
88
|
+
/packages/*/test/**/*.d.mts
|
|
89
|
+
/packages/*/test/*.mjs
|
|
90
|
+
/packages/*/test/*.d.mts
|
|
91
|
+
/packages/*/test/temp*
|
|
92
|
+
/packages/*/tests/**/*.mjs
|
|
93
|
+
/packages/*/tests/**/*.d.mts
|
|
94
|
+
/packages/*/tests/*.mjs
|
|
95
|
+
/packages/*/tests/*.d.mts
|
|
96
|
+
/packages/*/tests/temp*
|
|
97
|
+
|
|
98
|
+
test/**/*.cjs
|
|
99
|
+
test/**/*.d.cts
|
|
100
|
+
test/*.cjs
|
|
101
|
+
test/*.d.cts
|
|
102
|
+
test/temp*
|
|
103
|
+
test/**/*.map
|
|
104
|
+
tests/**/*.cjs
|
|
105
|
+
tests/**/*.d.cts
|
|
106
|
+
tests/*.cjs
|
|
107
|
+
tests/*.d.cts
|
|
108
|
+
tests/temp*
|
|
109
|
+
tests/**/*.map
|
|
110
|
+
bin/*.d.cts
|
|
111
|
+
bin/**/*.d.cts
|
|
112
|
+
/packages/*/bin/*.d.cts
|
|
113
|
+
/packages/*/test/**/*.cjs
|
|
114
|
+
/packages/*/test/**/*.d.cts
|
|
115
|
+
/packages/*/test/*.cjs
|
|
116
|
+
/packages/*/test/*.d.cts
|
|
117
|
+
/packages/*/test/temp*
|
|
118
|
+
/packages/*/tests/**/*.cjs
|
|
119
|
+
/packages/*/tests/**/*.d.cts
|
|
120
|
+
/packages/*/tests/*.cjs
|
|
121
|
+
/packages/*/tests/*.d.cts
|
|
122
|
+
/packages/*/tests/temp*
|
|
123
|
+
|
|
124
|
+
|
|
71
125
|
**/node_modules
|
|
72
126
|
*.tgz
|
|
73
127
|
/tsconfig.json.tpl
|
|
@@ -121,6 +175,11 @@ jest.config.d.ts
|
|
|
121
175
|
jest.config.js.map
|
|
122
176
|
/report.*.json
|
|
123
177
|
*.js.map
|
|
178
|
+
*.cjs.map
|
|
179
|
+
*.mjs.map
|
|
180
|
+
*.ts.map
|
|
181
|
+
*.cts.map
|
|
182
|
+
*.mts.map
|
|
124
183
|
/now.json
|
|
125
184
|
.nyc_output
|
|
126
185
|
.coverage-cache
|
|
@@ -143,3 +202,8 @@ jest.config.js.map
|
|
|
143
202
|
.gradle
|
|
144
203
|
/out
|
|
145
204
|
/build
|
|
205
|
+
|
|
206
|
+
/_*/
|
|
207
|
+
_snowpack
|
|
208
|
+
web_modules
|
|
209
|
+
tsc-multi.json.tpl
|
package/file/lerna.json.tpl
CHANGED
|
@@ -29,14 +29,17 @@
|
|
|
29
29
|
"conventionalGraduate": false
|
|
30
30
|
},
|
|
31
31
|
"version": {
|
|
32
|
+
"concurrency": 1,
|
|
32
33
|
"noPrivate": true,
|
|
33
34
|
"conventionalCommits": true,
|
|
34
35
|
"changelogPreset": "@bluelovers/conventional-changelog-bluelovers"
|
|
35
36
|
},
|
|
36
37
|
"run": {
|
|
38
|
+
"concurrency": 1,
|
|
37
39
|
"stream": true
|
|
38
40
|
},
|
|
39
41
|
"exec": {
|
|
42
|
+
"concurrency": 1,
|
|
40
43
|
"stream": true
|
|
41
44
|
},
|
|
42
45
|
"add": {
|
package/file/npmignore
CHANGED
|
@@ -26,6 +26,15 @@ node_modules
|
|
|
26
26
|
!*.d.ts
|
|
27
27
|
/bin/**/*.d.ts
|
|
28
28
|
/bin/*.d.ts
|
|
29
|
+
|
|
30
|
+
!*.d.mts
|
|
31
|
+
/bin/**/*.d.mts
|
|
32
|
+
/bin/*.d.mts
|
|
33
|
+
|
|
34
|
+
!*.d.cts
|
|
35
|
+
/bin/**/*.d.cts
|
|
36
|
+
/bin/*.d.cts
|
|
37
|
+
|
|
29
38
|
*.tgz
|
|
30
39
|
/tsconfig.json.tpl
|
|
31
40
|
yarn-error.log
|
|
@@ -74,6 +83,15 @@ now.json
|
|
|
74
83
|
*.spec.d.ts
|
|
75
84
|
*.spec.js
|
|
76
85
|
*.spec.ts
|
|
86
|
+
|
|
87
|
+
*.spec.d.cts
|
|
88
|
+
*.spec.cjs
|
|
89
|
+
*.spec.cts
|
|
90
|
+
|
|
91
|
+
*.spec.d.mts
|
|
92
|
+
*.spec.mjs
|
|
93
|
+
*.spec.mts
|
|
94
|
+
|
|
77
95
|
*.spec.tsx
|
|
78
96
|
__mocks__
|
|
79
97
|
__tests__
|
|
@@ -85,3 +103,13 @@ npm-shrinkwrap.json
|
|
|
85
103
|
.vercel
|
|
86
104
|
tsdx.config.js
|
|
87
105
|
/report.json
|
|
106
|
+
|
|
107
|
+
/_*/
|
|
108
|
+
_snowpack
|
|
109
|
+
|
|
110
|
+
/snowpack.config.js
|
|
111
|
+
web_modules
|
|
112
|
+
cz-adapter
|
|
113
|
+
|
|
114
|
+
tsc-multi.json.tpl
|
|
115
|
+
tsc-multi.json
|
package/lib/const.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { IStaticFilesMapArray } from './types';
|
|
2
|
-
export declare const defaultCopyStaticFiles: IStaticFilesMapArray<"tsconfig.json.tpl" | "test/tsconfig.json.tpl" | "tsconfig.esm.json.tpl" | ".eslintrc.json.tpl" | "now.json.tpl" | ".npmrc.tpl" | "tsdx.config.js.tpl">;
|
|
2
|
+
export declare const defaultCopyStaticFiles: IStaticFilesMapArray<"tsconfig.json.tpl" | "test/tsconfig.json.tpl" | "tsconfig.esm.json.tpl" | "tsconfig.tsdx.json.tpl" | ".eslintrc.json.tpl" | "now.json.tpl" | ".npmrc.tpl" | "tsdx.config.js.tpl" | "tsc-multi.json.tpl">;
|
|
3
3
|
export declare const defaultCopyStaticFilesRootOnly: IStaticFilesMapArray<"tsconfig.json" | "lerna.json.tpl" | "pnpm-workspace.yaml.tpl">;
|
package/lib/const.js
CHANGED
|
@@ -10,6 +10,7 @@ const _defaultCopyStaticFiles = [
|
|
|
10
10
|
['tsconfig.json.tpl', 'file/tsconfig.json.tpl', 'tsconfig.json'],
|
|
11
11
|
['test/tsconfig.json.tpl', 'file/test/tsconfig.json.tpl', 'test/tsconfig.json'],
|
|
12
12
|
['tsconfig.esm.json.tpl', 'file/tsconfig.esm.json.tpl', 'tsconfig.esm.json'],
|
|
13
|
+
['tsconfig.tsdx.json.tpl', 'file/tsconfig.tsdx.json.tpl', 'tsconfig.tsdx.json'],
|
|
13
14
|
['.eslintrc.json.tpl', 'file/eslintrc.json.tpl', '.eslintrc.json'],
|
|
14
15
|
['README.md', 'file/README.md'],
|
|
15
16
|
['.nycrc', 'file/nycrc'],
|
|
@@ -19,6 +20,7 @@ const _defaultCopyStaticFiles = [
|
|
|
19
20
|
['now.json.tpl', 'file/now.json.tpl', 'now.json'],
|
|
20
21
|
['.npmrc.tpl', 'file/npmrc', '.npmrc'],
|
|
21
22
|
['tsdx.config.js.tpl', 'file/tsdx.config.js', 'tsdx.config.js'],
|
|
23
|
+
['tsc-multi.json.tpl', 'file/tsc-multi.json.tpl', 'tsc-multi.json'],
|
|
22
24
|
];
|
|
23
25
|
const _defaultCopyStaticFilesRootOnly = [
|
|
24
26
|
['lerna.json.tpl', 'file/lerna.json.tpl', 'lerna.json'],
|
package/lib/const.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"const.js","sourceRoot":"","sources":["const.ts"],"names":[],"mappings":";;;AAEA,MAAM,uBAAuB,GAAG;IAE/B,CAAC,YAAY,EAAE,gBAAgB,CAAC;IAChC,CAAC,YAAY,EAAE,gBAAgB,CAAC;IAEhC,CAAC,eAAe,EAAE,mBAAmB,CAAC;IAEtC,CAAC,QAAQ,EAAE,YAAY,CAAC;IACxB,CAAC,iBAAiB,EAAE,qBAAqB,CAAC;IAE1C,CAAC,mBAAmB,EAAE,wBAAwB,EAAE,eAAe,CAAC;IAEhE,CAAC,wBAAwB,EAAE,6BAA6B,EAAE,oBAAoB,CAAC;IAE/E,CAAC,uBAAuB,EAAE,4BAA4B,EAAE,mBAAmB,CAAC;IAE5E,CAAC,oBAAoB,EAAE,wBAAwB,EAAE,gBAAgB,CAAC;IAElE,CAAC,WAAW,EAAE,gBAAgB,CAAC;IAE/B,CAAC,QAAQ,EAAE,YAAY,CAAC;IAExB,CAAC,cAAc,EAAE,kBAAkB,CAAC;IACpC,CAAC,gBAAgB,EAAE,qBAAqB,CAAC;IAEzC,CAAC,YAAY,EAAE,gBAAgB,CAAC;IAEhC,CAAC,cAAc,EAAE,mBAAmB,EAAE,UAAU,CAAC;IAEjD,CAAC,YAAY,EAAE,YAAY,EAAE,QAAQ,CAAC;IAEtC,CAAC,oBAAoB,EAAE,qBAAqB,EAAE,gBAAgB,CAAC;
|
|
1
|
+
{"version":3,"file":"const.js","sourceRoot":"","sources":["const.ts"],"names":[],"mappings":";;;AAEA,MAAM,uBAAuB,GAAG;IAE/B,CAAC,YAAY,EAAE,gBAAgB,CAAC;IAChC,CAAC,YAAY,EAAE,gBAAgB,CAAC;IAEhC,CAAC,eAAe,EAAE,mBAAmB,CAAC;IAEtC,CAAC,QAAQ,EAAE,YAAY,CAAC;IACxB,CAAC,iBAAiB,EAAE,qBAAqB,CAAC;IAE1C,CAAC,mBAAmB,EAAE,wBAAwB,EAAE,eAAe,CAAC;IAEhE,CAAC,wBAAwB,EAAE,6BAA6B,EAAE,oBAAoB,CAAC;IAE/E,CAAC,uBAAuB,EAAE,4BAA4B,EAAE,mBAAmB,CAAC;IAE5E,CAAC,wBAAwB,EAAE,6BAA6B,EAAE,oBAAoB,CAAC;IAE/E,CAAC,oBAAoB,EAAE,wBAAwB,EAAE,gBAAgB,CAAC;IAElE,CAAC,WAAW,EAAE,gBAAgB,CAAC;IAE/B,CAAC,QAAQ,EAAE,YAAY,CAAC;IAExB,CAAC,cAAc,EAAE,kBAAkB,CAAC;IACpC,CAAC,gBAAgB,EAAE,qBAAqB,CAAC;IAEzC,CAAC,YAAY,EAAE,gBAAgB,CAAC;IAEhC,CAAC,cAAc,EAAE,mBAAmB,EAAE,UAAU,CAAC;IAEjD,CAAC,YAAY,EAAE,YAAY,EAAE,QAAQ,CAAC;IAEtC,CAAC,oBAAoB,EAAE,qBAAqB,EAAE,gBAAgB,CAAC;IAE/D,CAAC,oBAAoB,EAAE,yBAAyB,EAAE,gBAAgB,CAAC;CAE1D,CAAC;AAEX,MAAM,+BAA+B,GAAG;IAEvC,CAAC,gBAAgB,EAAE,qBAAqB,EAAE,YAAY,CAAC;IAEvD,CAAC,yBAAyB,EAAE,0BAA0B,EAAE,qBAAqB,CAAC;IAE9E,CAAC,gCAAgC,EAAE,oCAAoC,CAAC;IAExE,CAAC,8CAA8C,EAAE,kDAAkD,CAAC;IAEpG,CAAC,eAAe,EAAE,wBAAwB,EAAE,eAAe,CAAC;CAEnD,CAAC;AAEE,QAAA,sBAAsB,GAAG,MAAM,CAAC,MAAM,CAAC,uBAAuB,CAAsE,CAAC;AAErI,QAAA,8BAA8B,GAAG,MAAM,CAAC,MAAM,CAAC,+BAA+B,CAA8E,CAAC","sourcesContent":["import { _Key, IStaticFilesKey, IStaticFilesMapArray } from './types';\n\nconst _defaultCopyStaticFiles = [\n\n\t['.npmignore', 'file/npmignore'],\n\t['.gitignore', 'file/gitignore'],\n\n\t['.eslintignore', 'file/eslintignore'],\n\n\t['.nvmrc', 'file/nvmrc'],\n\t['.browserslistrc', 'file/browserslistrc'],\n\n\t['tsconfig.json.tpl', 'file/tsconfig.json.tpl', 'tsconfig.json'],\n\n\t['test/tsconfig.json.tpl', 'file/test/tsconfig.json.tpl', 'test/tsconfig.json'],\n\n\t['tsconfig.esm.json.tpl', 'file/tsconfig.esm.json.tpl', 'tsconfig.esm.json'],\n\n\t['tsconfig.tsdx.json.tpl', 'file/tsconfig.tsdx.json.tpl', 'tsconfig.tsdx.json'],\n\n\t['.eslintrc.json.tpl', 'file/eslintrc.json.tpl', '.eslintrc.json'],\n\n\t['README.md', 'file/README.md'],\n\n\t['.nycrc', 'file/nycrc'],\n\n\t['.mocharc.yml', 'file/mocharc.yml'],\n\t['jest.config.js', 'file/jest.config.js'],\n\n\t['.nowignore', 'file/nowignore'],\n\n\t['now.json.tpl', 'file/now.json.tpl', 'now.json'],\n\n\t['.npmrc.tpl', 'file/npmrc', '.npmrc'],\n\n\t['tsdx.config.js.tpl', 'file/tsdx.config.js', 'tsdx.config.js'],\n\n\t['tsc-multi.json.tpl', 'file/tsc-multi.json.tpl', 'tsc-multi.json'],\n\n] as const;\n\nconst _defaultCopyStaticFilesRootOnly = [\n\n\t['lerna.json.tpl', 'file/lerna.json.tpl', 'lerna.json'],\n\n\t['pnpm-workspace.yaml.tpl', 'file/pnpm-workspace.yaml', 'pnpm-workspace.yaml'],\n\n\t['.github/workflows/coverage.yml', 'file/github/workflows/coverage.yml'],\n\n\t['.github/workflows/action-yarnlock-dedupe.yml', 'file/github/workflows/action-yarnlock-dedupe.yml'],\n\n\t['tsconfig.json', 'file/tsconfig.json.tpl', 'tsconfig.json'],\n\n] as const;\n\nexport const defaultCopyStaticFiles = Object.freeze(_defaultCopyStaticFiles) as any as IStaticFilesMapArray<_Key<typeof _defaultCopyStaticFiles>>;\n\nexport const defaultCopyStaticFilesRootOnly = Object.freeze(_defaultCopyStaticFilesRootOnly) as any as IStaticFilesMapArray<_Key<typeof _defaultCopyStaticFilesRootOnly>>;\n"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yarn-tool/static-file",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.79",
|
|
4
4
|
"description": "",
|
|
5
5
|
"homepage": "https://github.com/bluelovers/ws-yarn-workspaces#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -31,5 +31,5 @@
|
|
|
31
31
|
"publishConfig": {
|
|
32
32
|
"access": "public"
|
|
33
33
|
},
|
|
34
|
-
"gitHead": "
|
|
34
|
+
"gitHead": "861c8752a3a57291de3078d8e67b2d9e84fe2217"
|
|
35
35
|
}
|