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