@yarn-tool/static-file 1.0.77 → 1.0.78

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
@@ -3,6 +3,18 @@
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.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)
7
+
8
+
9
+ ### ✨ Features
10
+
11
+ * mts cts ([15e3a9e](https://github.com/bluelovers/ws-yarn-workspaces/commit/15e3a9e756ce144a16f6410309ba83aa82a16ec8))
12
+ * update tsdx ([c46cfb0](https://github.com/bluelovers/ws-yarn-workspaces/commit/c46cfb054238f238c1a6735cb8b6b9b3ac09728a))
13
+
14
+
15
+
16
+
17
+
6
18
  ## [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)
7
19
 
8
20
 
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
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__
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yarn-tool/static-file",
3
- "version": "1.0.77",
3
+ "version": "1.0.78",
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": "6fabb75bc28d001babfb3c42a0afbc36384a2a9b"
34
+ "gitHead": "335ba673db3c1c8782d7dc231b043427d750c88d"
35
35
  }