@guanghechen/invariant 6.0.0-alpha.0 → 6.0.1

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/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  <header>
2
2
  <h1 align="center">
3
- <a href="https://github.com/guanghechen/node-scaffolds/tree/@guanghechen/invariant@6.0.0-alpha.0/packages/invariant#readme">@guanghechen/invariant</a>
3
+ <a href="https://github.com/guanghechen/sora/tree/@guanghechen/invariant@6.0.1/packages/invariant#readme">@guanghechen/invariant</a>
4
4
  </h1>
5
5
  <div align="center">
6
6
  <a href="https://www.npmjs.com/package/@guanghechen/invariant">
@@ -84,5 +84,5 @@ and throw an error when the given condition fails.
84
84
 
85
85
  ## Related
86
86
 
87
- [homepage]: https://github.com/guanghechen/node-scaffolds/tree/@guanghechen/invariant@6.0.0-alpha.0/packages/invariant#readme
87
+ [homepage]: https://github.com/guanghechen/sora/tree/@guanghechen/invariant@6.0.1/packages/invariant#readme
88
88
  [tiny-invariant]: https://github.com/alexreardon/tiny-invariant
package/lib/cjs/index.cjs CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
- const isProduction = process.env.NODE_ENV === 'production';
5
+ const isProduction = process.env['NODE_ENV'] === 'production';
6
6
  const prefix = 'Invariant failed';
7
7
  function invariant(condition, message) {
8
8
  if (condition)
@@ -16,3 +16,4 @@ function invariant(condition, message) {
16
16
 
17
17
  exports.default = invariant;
18
18
  exports.invariant = invariant;
19
+ //# sourceMappingURL=index.cjs.map
package/lib/esm/index.mjs CHANGED
@@ -1,4 +1,4 @@
1
- const isProduction = process.env.NODE_ENV === 'production';
1
+ const isProduction = process.env['NODE_ENV'] === 'production';
2
2
  const prefix = 'Invariant failed';
3
3
  function invariant(condition, message) {
4
4
  if (condition)
@@ -11,3 +11,4 @@ function invariant(condition, message) {
11
11
  }
12
12
 
13
13
  export { invariant as default, invariant };
14
+ //# sourceMappingURL=index.mjs.map
@@ -8,3 +8,4 @@
8
8
  declare function invariant(condition: boolean, message?: (() => string) | string | null): asserts condition;
9
9
 
10
10
  export { invariant as default, invariant };
11
+ //# sourceMappingURL=index.d.ts.map
package/package.json CHANGED
@@ -1,26 +1,30 @@
1
1
  {
2
2
  "name": "@guanghechen/invariant",
3
- "version": "6.0.0-alpha.0",
4
- "description": "Invariant function",
3
+ "version": "6.0.1",
4
+ "description": "A simple invariant function",
5
5
  "author": {
6
6
  "name": "guanghechen",
7
7
  "url": "https://github.com/guanghechen/"
8
8
  },
9
9
  "repository": {
10
10
  "type": "git",
11
- "url": "https://github.com/guanghechen/node-scaffolds/tree/@guanghechen/invariant@5.0.9",
11
+ "url": "https://github.com/guanghechen/sora/tree/@guanghechen/invariant@6.0.0",
12
12
  "directory": "packages/invariant"
13
13
  },
14
- "homepage": "https://github.com/guanghechen/node-scaffolds/tree/@guanghechen/invariant@5.0.9/packages/invariant#readme",
14
+ "homepage": "https://github.com/guanghechen/sora/tree/@guanghechen/invariant@6.0.0/packages/invariant#readme",
15
15
  "type": "module",
16
- "main": "./lib/cjs/index.cjs",
17
- "module": "./lib/esm/index.mjs",
18
16
  "exports": {
19
- "import": "./lib/esm/index.mjs",
20
- "require": "./lib/cjs/index.cjs"
17
+ ".": {
18
+ "source": "./src/index.ts",
19
+ "import": "./lib/esm/index.mjs",
20
+ "require": "./lib/cjs/index.cjs",
21
+ "types": "./lib/types/index.d.ts"
22
+ }
21
23
  },
22
- "types": "lib/types/index.d.ts",
23
- "source": "src/index.ts",
24
+ "source": "./src/index.ts",
25
+ "main": "./lib/cjs/index.cjs",
26
+ "module": "./lib/esm/index.mjs",
27
+ "types": "./lib/types/index.d.ts",
24
28
  "license": "MIT",
25
29
  "engines": {
26
30
  "node": ">= 18.0.0"
@@ -33,10 +37,5 @@
33
37
  "LICENSE",
34
38
  "README.md"
35
39
  ],
36
- "scripts": {
37
- "build": "../../node_modules/.bin/rimraf lib/ && ../../node_modules/.bin/cross-env NODE_ENV=production ../../node_modules/.bin/rollup -c ../../rollup.config.mjs",
38
- "prepublishOnly": "yarn build",
39
- "test": "node --experimental-vm-modules ../../node_modules/.bin/jest --config ../../jest.config.mjs --rootDir ."
40
- },
41
- "gitHead": "135c1fa42b0295cab383b09d2c78dfb168448a32"
40
+ "gitHead": "2723aaa31e8ac85afed5b25760875db429d88563"
42
41
  }
package/CHANGELOG.md DELETED
@@ -1,877 +0,0 @@
1
- # Change Log
2
-
3
- All notable changes to this project will be documented in this file.
4
- See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
-
6
- # [6.0.0-alpha.0](https://github.com/guanghechen/node-scaffolds/compare/@guanghechen/invariant@5.0.9...@guanghechen/invariant@6.0.0-alpha.0) (2023-11-18)
7
-
8
-
9
- ### Performance Improvements
10
-
11
- * 🔧 upgrade engine version requirement from '>= 16.0.0' to '>= 18.0.0' ([04e41e3](https://github.com/guanghechen/node-scaffolds/commit/04e41e3431fcd015117091c6ce2c4f37e9afcf2f))
12
-
13
-
14
-
15
-
16
-
17
- ## [5.0.9](https://github.com/guanghechen/node-scaffolds/compare/@guanghechen/invariant@5.0.8...@guanghechen/invariant@5.0.9) (2023-10-18)
18
-
19
-
20
- ### Performance Improvements
21
-
22
- * :art: refactor codes with @guanghechen/path and @guanghechen/filepath ([38b75ff](https://github.com/guanghechen/node-scaffolds/commit/38b75ff89abdbdfc0f0c0a34b18ce353c49a3f50))
23
-
24
-
25
-
26
-
27
-
28
- ## [5.0.8](https://github.com/guanghechen/node-scaffolds/compare/@guanghechen/invariant@5.0.7...@guanghechen/invariant@5.0.8) (2023-10-04)
29
-
30
-
31
- ### Performance Improvements
32
-
33
- * ⬆️ the version of subpackage devDependencies is not matter ([1ac18c0](https://github.com/guanghechen/node-scaffolds/commit/1ac18c0d6276a4655ad9c865aa67705c4808c725))
34
-
35
-
36
-
37
-
38
-
39
- ## [5.0.7](https://github.com/guanghechen/node-scaffolds/compare/@guanghechen/invariant@5.0.6...@guanghechen/invariant@5.0.7) (2023-09-07)
40
-
41
-
42
- ### Performance Improvements
43
-
44
- * ⬆️ upgrade dependencies ([83e3f3e](https://github.com/guanghechen/node-scaffolds/commit/83e3f3eaf4c3a354e2ddf167fa1a4bb75e750427))
45
-
46
-
47
-
48
-
49
-
50
- ## [5.0.6](https://github.com/guanghechen/node-scaffolds/compare/@guanghechen/invariant@5.0.5...@guanghechen/invariant@5.0.6) (2023-08-27)
51
-
52
-
53
- ### Performance Improvements
54
-
55
- * ⬆️ upgrade dependencies ([8fa97de](https://github.com/guanghechen/node-scaffolds/commit/8fa97dee952f55565a2ac9b6680256c406df72ab))
56
-
57
-
58
-
59
-
60
-
61
- ## [5.0.5](https://github.com/guanghechen/node-scaffolds/compare/@guanghechen/invariant@5.0.4...@guanghechen/invariant@5.0.5) (2023-08-19)
62
-
63
-
64
- ### Performance Improvements
65
-
66
- * ⬆️ upgrade dependencies ([2c25097](https://github.com/guanghechen/node-scaffolds/commit/2c25097d9733f3e17d9725fede8dc960073099fe))
67
-
68
-
69
-
70
-
71
-
72
- ## [5.0.4](https://github.com/guanghechen/node-scaffolds/compare/@guanghechen/invariant@5.0.3...@guanghechen/invariant@5.0.4) (2023-08-08)
73
-
74
-
75
- ### Performance Improvements
76
-
77
- * ⬆️ upgrade dependencies ([bbc1ae6](https://github.com/guanghechen/node-scaffolds/commit/bbc1ae6b40aa4030f4103035f062dd4040a35b08))
78
-
79
-
80
-
81
-
82
-
83
- ## [5.0.3](https://github.com/guanghechen/node-scaffolds/compare/@guanghechen/invariant@5.0.2...@guanghechen/invariant@5.0.3) (2023-07-25)
84
-
85
-
86
- ### Performance Improvements
87
-
88
- * 🔧 update npm script ([4ffc90a](https://github.com/guanghechen/node-scaffolds/commit/4ffc90aff15c75fcc6afeeabf4d83dbc8c1b7933))
89
- * ⬆️ upgrade dependencies ([a9b6097](https://github.com/guanghechen/node-scaffolds/commit/a9b609785175e91903ca8215a807691ba6fbc419))
90
-
91
-
92
-
93
-
94
-
95
- ## [5.0.2](https://github.com/guanghechen/node-scaffolds/compare/@guanghechen/invariant@5.0.1...@guanghechen/invariant@5.0.2) (2023-07-15)
96
-
97
-
98
- ### Performance Improvements
99
-
100
- * ⬆️ upgrade dependencies ([4f0f471](https://github.com/guanghechen/node-scaffolds/commit/4f0f4712d061099ea9d5605efeb54357e4479f6a))
101
-
102
-
103
-
104
-
105
-
106
- ## [5.0.1](https://github.com/guanghechen/node-scaffolds/compare/@guanghechen/invariant@5.0.0...@guanghechen/invariant@5.0.1) (2023-05-26)
107
-
108
-
109
- ### Performance Improvements
110
-
111
- * 🔧 update jest config to reuse tsconfig for test ([54883f0](https://github.com/guanghechen/node-scaffolds/commit/54883f032cbba78af4609d6d4fb2b5e1ac68b518))
112
-
113
-
114
-
115
-
116
-
117
- # 5.0.0 (2023-05-13)
118
-
119
-
120
- ### Performance Improvements
121
-
122
- * 📝 remove all CHANGELOG in repo ([40909ed](https://github.com/guanghechen/node-scaffolds/commit/40909ed439632e0c4b0cd817614e24fdeac2fa23))
123
-
124
-
125
-
126
- # 5.0.0-alpha.3 (2023-05-07)
127
-
128
-
129
- ### Performance Improvements
130
-
131
- * :bookmark: release ([b5a3423](https://github.com/guanghechen/node-scaffolds/commit/b5a3423a3dd338d13ac4247c2651f4693f9fe363))
132
- * ⬆️ upgrade devDependencies ([30a9c27](https://github.com/guanghechen/node-scaffolds/commit/30a9c27c22b8debcf8dd5b2652ec335458caf31c))
133
-
134
-
135
-
136
- # 5.0.0-alpha.2 (2023-05-01)
137
-
138
-
139
- ### Performance Improvements
140
-
141
- * 🔖 publish v5.0.0-alpha.2 ([708dd6d](https://github.com/guanghechen/node-scaffolds/commit/708dd6d721059e902c375e628c939b28664f3058))
142
- * ⬆️ upgrade dependencies ([d7f49fe](https://github.com/guanghechen/node-scaffolds/commit/d7f49fe9a0cedfbb2a7584da196a1bcc7b78bacd))
143
-
144
-
145
-
146
- # 5.0.0-alpha.1 (2023-04-09)
147
-
148
-
149
- ### Performance Improvements
150
-
151
- * 🔖 publish v5.0.0-alpha.1 ([45d61b7](https://github.com/guanghechen/node-scaffolds/commit/45d61b7ac2bd92cd6fbbfb5c310bd6bbb95f49f8))
152
-
153
-
154
-
155
- # 5.0.0-alpha.0 (2023-04-02)
156
-
157
-
158
- ### Performance Improvements
159
-
160
- * ⬆️ don't pack src/ folder in tarball ([69671c5](https://github.com/guanghechen/node-scaffolds/commit/69671c533e15278052bf7b99bec2d70eab141393))
161
- * 🔖 publish v5.0.0-alpha.0 ([cf3e9a2](https://github.com/guanghechen/node-scaffolds/commit/cf3e9a2293c95fe113aa3515409276d5c50a794d))
162
- * 📝 update links for release-5.x.x ([672ea87](https://github.com/guanghechen/node-scaffolds/commit/672ea87c86f2eca1adfd136e74a4a4f7c58592a2))
163
-
164
-
165
-
166
- ## 4.7.4 (2023-03-26)
167
-
168
-
169
- ### Bug Fixes
170
-
171
- * 📝 correct repository url in package.json ([fdede9c](https://github.com/guanghechen/node-scaffolds/commit/fdede9cefe8f4910679e6e7d7ffc45fbb4f1e088)), closes [#6](https://github.com/guanghechen/node-scaffolds/issues/6)
172
-
173
-
174
- ### Performance Improvements
175
-
176
- * 🔖 publish v4.7.4 ([c30d5c4](https://github.com/guanghechen/node-scaffolds/commit/c30d5c42d2b5671118ab0261390e17ae45d279c6))
177
- * ⬆️ upgrade devDependencies ([8bfcfc5](https://github.com/guanghechen/node-scaffolds/commit/8bfcfc5931cb388a7e93c17b417507f0ce964bb5))
178
-
179
-
180
-
181
- ## 4.7.3 (2023-03-25)
182
-
183
-
184
- ### Performance Improvements
185
-
186
- * 🔖 publish v4.7.3 ([5c5cb47](https://github.com/guanghechen/node-scaffolds/commit/5c5cb4750d7d4e455e0b39565c0a304f736a3251))
187
-
188
-
189
-
190
- ## 4.7.2 (2023-03-23)
191
-
192
-
193
- ### Performance Improvements
194
-
195
- * 🔖 publish v4.7.2 ([e628cc9](https://github.com/guanghechen/node-scaffolds/commit/e628cc99eb2dcd8665bbac124ec587824382c698))
196
- * ⬆️ upgrade devDependencies ([2be4555](https://github.com/guanghechen/node-scaffolds/commit/2be4555e58cc40bd290faa66f160751be3e22bee))
197
-
198
-
199
-
200
- ## 4.7.1 (2023-03-19)
201
-
202
-
203
- ### Performance Improvements
204
-
205
- * 🔖 publish v4.7.1 ([1349c5c](https://github.com/guanghechen/node-scaffolds/commit/1349c5cf88890817b259b579449884bafb598d86))
206
- * ⬆️ upgrade devDependencies ([ce172dd](https://github.com/guanghechen/node-scaffolds/commit/ce172ddfc3899902475fa14795e70f261ed35b37))
207
-
208
-
209
-
210
- # 4.7.0 (2023-03-12)
211
-
212
-
213
- ### Performance Improvements
214
-
215
- * 🔖 publish v4.7.0 ([0641367](https://github.com/guanghechen/node-scaffolds/commit/06413670b283538876023c66d0f2afa45074b016))
216
-
217
-
218
-
219
- ## 4.6.5 (2023-03-12)
220
-
221
-
222
- ### Performance Improvements
223
-
224
- * 🔖 publish v4.6.5 ([83a48e7](https://github.com/guanghechen/node-scaffolds/commit/83a48e74ac5875200e8c30c332ffc1a4ff57e79f))
225
-
226
-
227
-
228
- ## 4.6.4 (2023-03-12)
229
-
230
-
231
- ### Performance Improvements
232
-
233
- * 🔖 publish v4.6.4 ([1ad9150](https://github.com/guanghechen/node-scaffolds/commit/1ad9150445f9c7d03153f81f54bf0815b7510f50))
234
-
235
-
236
-
237
- ## 4.6.3 (2023-03-11)
238
-
239
-
240
- ### Performance Improvements
241
-
242
- * 🔖 publish v4.6.3 ([16683dd](https://github.com/guanghechen/node-scaffolds/commit/16683dd3e64ea492c1b49d0dea7e81b98ea9d71c))
243
-
244
-
245
-
246
- ## 4.6.2 (2023-03-10)
247
-
248
-
249
- ### Performance Improvements
250
-
251
- * 🔖 publish v4.6.2 ([3547f1c](https://github.com/guanghechen/node-scaffolds/commit/3547f1ca30871d8065c3c075d360d23df3fe84f2))
252
- * ⬆️ upgrade devDependencies ([5f4cfd5](https://github.com/guanghechen/node-scaffolds/commit/5f4cfd5c9d5b8f371d54d9a4c2a3882f7498b882))
253
-
254
-
255
-
256
- ## 4.6.1 (2023-03-05)
257
-
258
-
259
- ### Performance Improvements
260
-
261
- * 🔖 publish v4.6.1 ([2d88cf7](https://github.com/guanghechen/node-scaffolds/commit/2d88cf7835c017183a5fd097ebf2a7c7fe622692))
262
- * ⬆️ upgrade devDependencies ([b358df3](https://github.com/guanghechen/node-scaffolds/commit/b358df3c4da109260dbd4ab43e72f80ffdf3cecd))
263
-
264
-
265
-
266
- # 4.6.0 (2023-02-28)
267
-
268
-
269
- ### Performance Improvements
270
-
271
- * 🔖 publish v4.6.0 ([d45f55f](https://github.com/guanghechen/node-scaffolds/commit/d45f55f4cd4d8214beb0724a45de4f36baa431c1))
272
-
273
-
274
-
275
- # 4.5.0 (2023-02-27)
276
-
277
-
278
- ### Performance Improvements
279
-
280
- * 🔖 publish v4.5.0 ([a361eb1](https://github.com/guanghechen/node-scaffolds/commit/a361eb1b21a9fa55e7da7c44584dfc4f04c0af36))
281
-
282
-
283
-
284
- ## 4.4.3 (2023-02-27)
285
-
286
-
287
- ### Performance Improvements
288
-
289
- * 🔖 publish v4.4.3 ([29113fb](https://github.com/guanghechen/node-scaffolds/commit/29113fb651d40ec8144059875e2dd36b103e25b8))
290
-
291
-
292
-
293
- ## 4.4.2 (2023-02-26)
294
-
295
-
296
- ### Performance Improvements
297
-
298
- * 🔖 publish v4.4.2 ([e864740](https://github.com/guanghechen/node-scaffolds/commit/e8647409675f14054b6ba4eee770377e3d68ec1e))
299
-
300
-
301
-
302
- ## 4.4.1 (2023-02-25)
303
-
304
-
305
- ### Performance Improvements
306
-
307
- * 🔖 publish v4.4.1 ([332c5ff](https://github.com/guanghechen/node-scaffolds/commit/332c5ff77ef74b08a5349e80c64cc35a7ea1bbed))
308
-
309
-
310
-
311
- # 4.4.0 (2023-02-25)
312
-
313
-
314
- ### Performance Improvements
315
-
316
- * 🔖 publish v4.4.0 ([c54cc52](https://github.com/guanghechen/node-scaffolds/commit/c54cc52236ed01f80b310cb8c0a07fe0beb42755))
317
- * ⬆️ upgrade devDependencies ([3a4d2de](https://github.com/guanghechen/node-scaffolds/commit/3a4d2def1cc59fdabe58888da7970da348de538a))
318
-
319
-
320
-
321
- # 4.3.0 (2023-02-21)
322
-
323
-
324
- ### Performance Improvements
325
-
326
- * 🔖 publish v4.3.0 ([501a8df](https://github.com/guanghechen/node-scaffolds/commit/501a8dfb2cf7ff8302af41cf24acf99ca5c254c8))
327
-
328
-
329
-
330
- ## 4.2.2 (2023-02-20)
331
-
332
-
333
- ### Performance Improvements
334
-
335
- * 🔖 publish v4.2.2 ([bf0f251](https://github.com/guanghechen/node-scaffolds/commit/bf0f251214e1eac2056911e2ad7895dfa19959d7))
336
-
337
-
338
-
339
- ## 4.2.1 (2023-02-20)
340
-
341
-
342
- ### Performance Improvements
343
-
344
- * 🔖 publish v4.2.1 ([6a117ec](https://github.com/guanghechen/node-scaffolds/commit/6a117ece78cfaeff8d7d14da548e07d20a2816a7))
345
-
346
-
347
-
348
- # 4.2.0 (2023-02-19)
349
-
350
-
351
- ### Performance Improvements
352
-
353
- * 🔖 publish v4.2.0 ([ee9c6e2](https://github.com/guanghechen/node-scaffolds/commit/ee9c6e246278aa1bd6a2f5802891b4b41f5fbb6f))
354
-
355
-
356
-
357
- ## 4.1.3 (2023-02-18)
358
-
359
-
360
- ### Performance Improvements
361
-
362
- * 🔖 publish v4.1.3 ([89ce0d8](https://github.com/guanghechen/node-scaffolds/commit/89ce0d84e973cc87444db249ea6a6eeb6572a524))
363
-
364
-
365
-
366
- ## 4.1.2 (2023-02-18)
367
-
368
-
369
- ### Performance Improvements
370
-
371
- * 🔖 publish v4.1.2 ([ff461e9](https://github.com/guanghechen/node-scaffolds/commit/ff461e94432c8baa395c4d82af81f53448ff5084))
372
-
373
-
374
-
375
- ## 4.1.1 (2023-02-18)
376
-
377
-
378
- ### Performance Improvements
379
-
380
- * 🔖 publish v4.1.1 ([01f6698](https://github.com/guanghechen/node-scaffolds/commit/01f6698a7456bddbfe1c62df41d500e83a68de0d))
381
- * ⬆️ upgrade devDependencies ([e46df0d](https://github.com/guanghechen/node-scaffolds/commit/e46df0def851adee643918b6626f1f867eb729e4))
382
-
383
-
384
-
385
- # 4.1.0 (2023-02-18)
386
-
387
-
388
- ### Performance Improvements
389
-
390
- * 🔖 publish v4.1.0 ([a2eb1f3](https://github.com/guanghechen/node-scaffolds/commit/a2eb1f37d4646e3e612f3b407a6cf078daf436a6))
391
-
392
-
393
-
394
- # 4.0.0 (2023-02-13)
395
-
396
-
397
- ### Performance Improvements
398
-
399
- * 🔖 publish v4.0.0 ([a635369](https://github.com/guanghechen/node-scaffolds/commit/a63536936a3d9886579f405da75606be0dc2bb81))
400
-
401
-
402
-
403
- # 4.0.0-alpha.8 (2023-02-12)
404
-
405
-
406
- ### Performance Improvements
407
-
408
- * 🔖 publish v4.0.0-alpha.8 ([07368f1](https://github.com/guanghechen/node-scaffolds/commit/07368f180b4184a9a1a56a7b4699d11c02375fa9))
409
-
410
-
411
-
412
- # 4.0.0-alpha.7 (2023-02-12)
413
-
414
-
415
- ### Performance Improvements
416
-
417
- * 🔖 publish v4.0.0-alpha.7 ([c93c32c](https://github.com/guanghechen/node-scaffolds/commit/c93c32cdebd9525f5db4e9219eb2fb6d750bffea))
418
- * 🔧 upgrade devDependencies ([320adbe](https://github.com/guanghechen/node-scaffolds/commit/320adbe4fdd15f859933c1eb913518e687942004))
419
-
420
-
421
-
422
- # 4.0.0-alpha.6 (2023-02-08)
423
-
424
-
425
- ### Performance Improvements
426
-
427
- * 🔖 publish v4.0.0-alpha.6 ([a9e5548](https://github.com/guanghechen/node-scaffolds/commit/a9e55488e45affeedc069037e18743c1856b208b))
428
-
429
-
430
-
431
- # 4.0.0-alpha.5 (2023-02-05)
432
-
433
-
434
- ### Performance Improvements
435
-
436
- * 🔖 publish v4.0.0-alpha.5 ([df74a71](https://github.com/guanghechen/node-scaffolds/commit/df74a71a3ac9afa7a54e423e691e5bbf7122deeb))
437
-
438
-
439
-
440
- # 4.0.0-alpha.4 (2023-02-04)
441
-
442
-
443
- ### Performance Improvements
444
-
445
- * 🔖 publish v4.0.0-alpha.4 ([bbbbb92](https://github.com/guanghechen/node-scaffolds/commit/bbbbb92773cd18e39a848bc1a3e54e0d80388c23))
446
-
447
-
448
-
449
- # 4.0.0-alpha.3 (2023-02-04)
450
-
451
-
452
- ### Performance Improvements
453
-
454
- * 🔖 publish v4.0.0-alpha.3 ([1f3b9e1](https://github.com/guanghechen/node-scaffolds/commit/1f3b9e198486a47e8d400f89e581985e03b57ded))
455
-
456
-
457
-
458
- # 4.0.0-alpha.2 (2023-02-04)
459
-
460
-
461
- ### Performance Improvements
462
-
463
- * 🔖 publish v4.0.0-alpha.2 ([42930f9](https://github.com/guanghechen/node-scaffolds/commit/42930f930e2f81eb227fd61dd8af9c9afd40528f))
464
-
465
-
466
-
467
- # 4.0.0-alpha.1 (2023-02-04)
468
-
469
-
470
- ### Performance Improvements
471
-
472
- * 🔖 publish v4.0.0-alpha.1 ([66bd5c7](https://github.com/guanghechen/node-scaffolds/commit/66bd5c7f0ee9b32f269cc366c33575fcef01fa97))
473
- * ⬆️ upgrade devDependencies ([75c3da9](https://github.com/guanghechen/node-scaffolds/commit/75c3da99c657543aaa9a8c1517766f0044898b22))
474
-
475
-
476
-
477
- # 4.0.0-alpha.0 (2023-02-04)
478
-
479
-
480
- ### Performance Improvements
481
-
482
- * ✅ fix test coverage ([8488e8a](https://github.com/guanghechen/node-scaffolds/commit/8488e8a655735bc788a7a12dc6548a39c41fbadc))
483
- * 🔧 fix test coverage ([a8d2b35](https://github.com/guanghechen/node-scaffolds/commit/a8d2b35630d8bd8a57fa6a0414ba2b6f7e4896f6))
484
- * 🔖 publish v4.0.0-alpha.0 ([2e04d90](https://github.com/guanghechen/node-scaffolds/commit/2e04d90202c630a1bbef60440b9504c993bb37fb))
485
- * 📝 update doc url ([c99c7f8](https://github.com/guanghechen/node-scaffolds/commit/c99c7f8849dc96e800d0fd166ac8fe748b1356f0))
486
- * ⬆️ upgrade dependencies ([f72ecb0](https://github.com/guanghechen/node-scaffolds/commit/f72ecb02a5c74f791c465aefacf11fe24e2fa1e2))
487
- * ⬆️ upgrade devDependencies ([325e12d](https://github.com/guanghechen/node-scaffolds/commit/325e12d78a76d205ad82a1c8a6758a34df404c34))
488
- * ⬆️ upgrade devDependencies ([5abb430](https://github.com/guanghechen/node-scaffolds/commit/5abb430a3b59da5ab02c2b55cc30cc46e6a627b5))
489
-
490
-
491
-
492
- ## 3.0.2 (2023-01-14)
493
-
494
-
495
- ### Performance Improvements
496
-
497
- * 🔖 publish v3.0.2 ([6837f48](https://github.com/guanghechen/node-scaffolds/commit/6837f483f60ac736a14941616f36600043b0b992))
498
-
499
-
500
-
501
- ## 3.0.1 (2023-01-14)
502
-
503
-
504
- ### Performance Improvements
505
-
506
- * 🔖 publish v3.0.1 ([d10a768](https://github.com/guanghechen/node-scaffolds/commit/d10a768cddab80934dcd6c0fc6316383e8f44a52))
507
- * ⬆️ upgrade devDependencies ([2993a46](https://github.com/guanghechen/node-scaffolds/commit/2993a46e3665c7cfb23858f44812498cb2f39573))
508
-
509
-
510
-
511
- # 3.0.0 (2023-01-09)
512
-
513
-
514
- ### Performance Improvements
515
-
516
- * 🔖 publish v3.0.0 ([a8cbe2a](https://github.com/guanghechen/node-scaffolds/commit/a8cbe2af542ccc3e112c9ee7cf564a496312a1e2))
517
-
518
-
519
-
520
- # 3.0.0-alpha.5 (2023-01-05)
521
-
522
-
523
- ### Performance Improvements
524
-
525
- * :bug: fix jest-config within esm ([4050e62](https://github.com/guanghechen/node-scaffolds/commit/4050e629536ae003c99ef9eeafa59c8aa8e1f0b3))
526
- * 🔖 publish v3.0.0-alpha.5 ([ff359c7](https://github.com/guanghechen/node-scaffolds/commit/ff359c7d9fcd48603b88b87698d825992ff55886))
527
-
528
-
529
-
530
- # 3.0.0-alpha.4 (2023-01-04)
531
-
532
-
533
- ### Performance Improvements
534
-
535
- * :wrench: fix commonjs entry ([259e185](https://github.com/guanghechen/node-scaffolds/commit/259e185ee811cebc4cf9b41d8c27c937460ef6d4))
536
- * 🔖 publish v3.0.0-alpha.4 ([ac69bef](https://github.com/guanghechen/node-scaffolds/commit/ac69bef736b78ddb90fd6830371118dcadaececa))
537
-
538
-
539
-
540
- # 3.0.0-alpha.3 (2023-01-04)
541
-
542
-
543
- ### Performance Improvements
544
-
545
- * 🔖 publish v3.0.0-alpha.3 ([d05d30a](https://github.com/guanghechen/node-scaffolds/commit/d05d30a9812564cd3e19835bf1b6462df64fdda4))
546
- * 🔧 support dual esm/commonjs packages ([90363f5](https://github.com/guanghechen/node-scaffolds/commit/90363f585471b527063133dedb1dff50d8b2a890))
547
-
548
-
549
-
550
- # 3.0.0-alpha.2 (2023-01-02)
551
-
552
-
553
- ### Performance Improvements
554
-
555
- * :wrench: [BREAKING] chore: support ESM only ([29b8c42](https://github.com/guanghechen/node-scaffolds/commit/29b8c421c0a2dfdd04cf4d7ff3ef0e5a93d70e16))
556
- * 🔖 publish v3.0.0-alpha.2 ([76c56b7](https://github.com/guanghechen/node-scaffolds/commit/76c56b76cb6b1fb368d47a8c20d2c06398f0009b))
557
-
558
-
559
-
560
- # 3.0.0-alpha.1 (2023-01-02)
561
-
562
-
563
- ### Performance Improvements
564
-
565
- * 🔖 publish v3.0.0-alpha.1 ([69dd141](https://github.com/guanghechen/node-scaffolds/commit/69dd141feb9fae875cf252ac6f6404542425a147))
566
-
567
-
568
-
569
- # 3.0.0-alpha.0 (2022-12-31)
570
-
571
-
572
- ### Performance Improvements
573
-
574
- * 🔧 fix build scripts ([b24918c](https://github.com/guanghechen/node-scaffolds/commit/b24918c278188a043f7aabfc30739fa97d5ad060))
575
- * 🔧 fix test ([6f911d4](https://github.com/guanghechen/node-scaffolds/commit/6f911d421240af2f17e6283bc4cbd53a32ac3bdc))
576
- * 🔖 publish v3.0.0-alpha.0 ([cf4b41a](https://github.com/guanghechen/node-scaffolds/commit/cf4b41a4fbd48d5ef5237b6827ddef1fe9484576))
577
- * 📝 update link for v3.x.x ([f39886b](https://github.com/guanghechen/node-scaffolds/commit/f39886b5568ad9ba3d9e09bc56947725c363c5f3))
578
-
579
-
580
-
581
- ## 2.1.4 (2022-11-03)
582
-
583
-
584
- ### Performance Improvements
585
-
586
- * 🔖 publish v2.1.4 ([8eedd0e](https://github.com/guanghechen/node-scaffolds/commit/8eedd0e65701ed9c63e7b5682dfbd96545136c0f))
587
-
588
-
589
-
590
- ## 2.1.3 (2022-11-03)
591
-
592
-
593
- ### Performance Improvements
594
-
595
- * 🔖 publish v2.1.3 ([79de5ac](https://github.com/guanghechen/node-scaffolds/commit/79de5ac90778283d4405357b50a2d291eecf4040))
596
-
597
-
598
-
599
- ## 2.1.2 (2022-10-20)
600
-
601
-
602
- ### Performance Improvements
603
-
604
- * 🔖 publish v2.1.2 ([1815a70](https://github.com/guanghechen/node-scaffolds/commit/1815a70b6f81b50d08b3de21692c51c32aeb4d10))
605
-
606
-
607
-
608
- ## 2.1.1 (2022-10-13)
609
-
610
-
611
- ### Performance Improvements
612
-
613
- * 🔖 publish v2.1.1 ([717d5f1](https://github.com/guanghechen/node-scaffolds/commit/717d5f12e96e7cf93340c75eb100356220e5e9ca))
614
-
615
-
616
-
617
- # 2.1.0 (2022-09-18)
618
-
619
-
620
- ### Performance Improvements
621
-
622
- * 🔖 publish v2.1.0 ([43dcadd](https://github.com/guanghechen/node-scaffolds/commit/43dcadd72fe3ce0c0aa040c0b810e286769a9a24))
623
-
624
-
625
-
626
- # 2.0.0 (2022-09-17)
627
-
628
-
629
- ### Performance Improvements
630
-
631
- * 🔖 publish v2.0.0 ([543c55f](https://github.com/guanghechen/node-scaffolds/commit/543c55f065895fef8fc2d3865cf6a4b72091355a))
632
- * 🔧 support node >= 16 ([208522b](https://github.com/guanghechen/node-scaffolds/commit/208522b6a7f8eba53a2562595706b25d63e91c29))
633
- * 📝 update READMEs ([d6743d2](https://github.com/guanghechen/node-scaffolds/commit/d6743d24c94ea6c7a24ff4a2dc48113a2c2f96ce))
634
-
635
-
636
-
637
- # 2.0.0-alpha.3 (2022-09-15)
638
-
639
-
640
- ### Performance Improvements
641
-
642
- * 🔖 publish v2.0.0-alpha.3 ([3214b8d](https://github.com/guanghechen/node-scaffolds/commit/3214b8d4b812707ccf1358d0f0fe1dc5c462a343))
643
-
644
-
645
-
646
- # 2.0.0-alpha.2 (2022-08-27)
647
-
648
-
649
- ### Performance Improvements
650
-
651
- * 🔖 publish v2.0.0-alpha.2 ([2d52783](https://github.com/guanghechen/node-scaffolds/commit/2d5278386a2d9503cb5c88d237d3a2dd34488446))
652
- * 🔧 update build configs ([1770796](https://github.com/guanghechen/node-scaffolds/commit/177079603d8884e550cbc015f691f13939da056e))
653
-
654
-
655
-
656
- # 2.0.0-alpha.1 (2022-08-13)
657
-
658
-
659
- ### Performance Improvements
660
-
661
- * 🔖 publish v2.0.0-alpha.1 ([55e1c7c](https://github.com/guanghechen/node-scaffolds/commit/55e1c7c75cf158298376c0a6dcd903cc6686a423))
662
-
663
-
664
-
665
- # 2.0.0-alpha.0 (2022-08-05)
666
-
667
-
668
- ### Performance Improvements
669
-
670
- * 🔧 modify build script ([4234bc0](https://github.com/guanghechen/node-scaffolds/commit/4234bc058bd9ade25778cb43ee5db939d8e630a9))
671
- * 🔖 publish v2.0.0-alpha.0 ([fe24ebd](https://github.com/guanghechen/node-scaffolds/commit/fe24ebdb066667fadbea415d33f564f9823b51d9))
672
-
673
-
674
-
675
- ## 1.9.8 (2022-07-27)
676
-
677
-
678
- ### Performance Improvements
679
-
680
- * 🔖 publish v1.9.8 ([9651227](https://github.com/guanghechen/node-scaffolds/commit/9651227b2d65cb1759237ad654bd7afb1ceff63b))
681
-
682
-
683
-
684
- ## 1.9.7 (2022-07-17)
685
-
686
-
687
- ### Performance Improvements
688
-
689
- * 🔖 publish v1.9.6 ([ec6f615](https://github.com/guanghechen/node-scaffolds/commit/ec6f615fc210c12c58cced0fcf1804d78484361c))
690
- * 🔖 publish v1.9.7 ([99b6390](https://github.com/guanghechen/node-scaffolds/commit/99b6390ca8bbec3f7e68bc0aaf4a5b6df321a98f))
691
-
692
-
693
-
694
- ## 1.9.5 (2022-06-03)
695
-
696
-
697
- ### Performance Improvements
698
-
699
- * 🔖 publish v1.9.5 ([9ae5c80](https://github.com/guanghechen/node-scaffolds/commit/9ae5c806f19af91d27e88e3739c3d88a7a58eb3f))
700
-
701
-
702
-
703
- ## 1.9.4 (2022-04-27)
704
-
705
-
706
- ### Performance Improvements
707
-
708
- * 🔖 publish v1.9.4 ([47d4ce6](https://github.com/guanghechen/node-scaffolds/commit/47d4ce6e3e8cb3f6ac601647781806d5a0359a3f))
709
-
710
-
711
-
712
- ## 1.9.3 (2022-04-10)
713
-
714
-
715
- ### Performance Improvements
716
-
717
- * 🔖 publish v1.9.3 ([54c2d91](https://github.com/guanghechen/node-scaffolds/commit/54c2d91beee691b6b36caab28c5da7567399f48e))
718
-
719
-
720
-
721
- ## 1.9.2 (2022-03-12)
722
-
723
-
724
- ### Performance Improvements
725
-
726
- * 🔖 publish v1.9.2 ([6a5e7de](https://github.com/guanghechen/node-scaffolds/commit/6a5e7dede723e4a03bf1069b7626c77263444fb4))
727
-
728
-
729
-
730
- ## 1.9.1 (2022-02-23)
731
-
732
-
733
- ### Performance Improvements
734
-
735
- * 🔖 publish v1.9.1 ([2f47d96](https://github.com/guanghechen/node-scaffolds/commit/2f47d96fb5cdd66835bf85edafc1d7bc03dbf01a))
736
-
737
-
738
-
739
- # 1.9.0 (2022-02-17)
740
-
741
-
742
- ### Performance Improvements
743
-
744
- * 🔖 publish v1.9.0 ([e97e6c5](https://github.com/guanghechen/node-scaffolds/commit/e97e6c5e1debb814e4dd987822ec3cd5a8fb7630))
745
-
746
-
747
-
748
- # 1.9.0-alpha.0 (2022-02-16)
749
-
750
-
751
- ### Performance Improvements
752
-
753
- * 🔖 publish v1.9.0-alpha.0 ([bc8648e](https://github.com/guanghechen/node-scaffolds/commit/bc8648e9f87ae88f6295a131e88afe71be089f4c))
754
-
755
-
756
-
757
- ## 1.8.6 (2022-01-15)
758
-
759
-
760
- ### Performance Improvements
761
-
762
- * 🔖 publish v1.8.6 ([1c91e77](https://github.com/guanghechen/node-scaffolds/commit/1c91e77474f86d6a8d06615f3f811a50c37dbc51))
763
- * 🎨 set print width to 100 (80 is old) ([3a46483](https://github.com/guanghechen/node-scaffolds/commit/3a46483b4c6cb6f5efe0263d6ba5848c6201de59))
764
-
765
-
766
-
767
- ## 1.8.5 (2021-12-05)
768
-
769
-
770
- ### Performance Improvements
771
-
772
- * 🔖 publish v1.8.5 ([3deed39](https://github.com/guanghechen/node-scaffolds/commit/3deed39749d423a403f04ab035c7a5d2574921eb))
773
-
774
-
775
-
776
- ## 1.8.4 (2021-10-28)
777
-
778
-
779
- ### Performance Improvements
780
-
781
- * 🔖 publish v1.8.4 ([be91bcb](https://github.com/guanghechen/node-scaffolds/commit/be91bcb53a6fdf590465771eac8da345ff82781a))
782
-
783
-
784
-
785
- ## 1.8.3 (2021-08-18)
786
-
787
-
788
- ### Performance Improvements
789
-
790
- * 🔖 publish v1.8.3 ([19d497d](https://github.com/guanghechen/node-scaffolds/commit/19d497d88753fac9948a75f67d47615eff569535))
791
-
792
-
793
-
794
- ## 1.8.2 (2021-08-14)
795
-
796
-
797
- ### Performance Improvements
798
-
799
- * 🔖 publish v1.8.2 ([0a09728](https://github.com/guanghechen/node-scaffolds/commit/0a09728efd5452f2d09c16a464fdb6f2d8d8b1d5))
800
-
801
-
802
-
803
- ## 1.8.1 (2021-08-06)
804
-
805
-
806
- ### Performance Improvements
807
-
808
- * 🔖 publish v1.8.1 ([5316fa1](https://github.com/guanghechen/node-scaffolds/commit/5316fa101ea743d9147ffd4b7a8ceeaa97abe45f))
809
-
810
-
811
-
812
- # 1.8.0 (2021-07-21)
813
-
814
-
815
- ### Performance Improvements
816
-
817
- * 🔖 publish v1.8.0 ([e255b6a](https://github.com/guanghechen/node-scaffolds/commit/e255b6af8504b96970b4e9951fb913a60efc3a4e))
818
-
819
-
820
-
821
- ## 1.7.1 (2021-07-07)
822
-
823
-
824
- ### Performance Improvements
825
-
826
- * 🔖 publish v1.7.1 ([a95f3c1](https://github.com/guanghechen/node-scaffolds/commit/a95f3c13392181826bf2c2762b25fa7a50cddf0d))
827
-
828
-
829
-
830
- # 1.7.0 (2021-07-03)
831
-
832
-
833
- ### Performance Improvements
834
-
835
- * 🔖 publish v1.7.0 ([62d82c9](https://github.com/guanghechen/node-scaffolds/commit/62d82c9b8a9c8fd1816d6ab64ddc2efde2d59649))
836
-
837
-
838
-
839
- # 1.7.0-alpha.3 (2021-07-03)
840
-
841
-
842
- ### Performance Improvements
843
-
844
- * 🔖 publish v1.7.0-alpha.3 ([a951df9](https://github.com/guanghechen/node-scaffolds/commit/a951df93d9555a39d5007134afe597374f33c8ed))
845
-
846
-
847
-
848
- # 1.7.0-alpha.2 (2021-07-03)
849
-
850
-
851
- ### Performance Improvements
852
-
853
- * 🔖 publish v1.7.0-alpha.2 ([43172b1](https://github.com/guanghechen/node-scaffolds/commit/43172b172edcb585de6171838da4cd619acc05af))
854
-
855
-
856
-
857
- # 1.7.0-alpha.1 (2021-07-02)
858
-
859
-
860
- ### Performance Improvements
861
-
862
- * 🔖 publish v1.7.0-alpha.1 ([e3599c0](https://github.com/guanghechen/node-scaffolds/commit/e3599c01885903e0daa7c73ccb25760480ad86df))
863
-
864
-
865
-
866
- # 1.7.0-alpha.0 (2021-07-02)
867
-
868
-
869
- ### Features
870
-
871
- * ✨ implements new sub-package @guanghechen/invariant ([13eab1e](https://github.com/guanghechen/node-scaffolds/commit/13eab1e0ce1706f10ea88b7dc8a484b7f19c94a4))
872
-
873
-
874
- ### Performance Improvements
875
-
876
- * 🎨 accept null type of message ([cbcf592](https://github.com/guanghechen/node-scaffolds/commit/cbcf592cec8b487c63ec2ca6d271dab04018cdf9))
877
- * 🔖 publish v1.7.0-alpha.0 ([44ba1b0](https://github.com/guanghechen/node-scaffolds/commit/44ba1b0abdf23e5f2b90f07c3462308982054df4))
package/LICENSE DELETED
@@ -1,21 +0,0 @@
1
- MIT License
2
-
3
- Copyright (c) 2020-2023 guanghechen (https://github.com/guanghechen)
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.