goldstein 7.0.3 → 7.1.0
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 +14 -0
- package/README.md +14 -0
- package/bun.lock +3094 -0
- package/package.json +8 -5
- package/packages/goldstein/index.js +2 -3
- package/packages/internal-parse-maybe-assign/index.js +1 -1
- package/packages/keyword-assign-from/index.js +1 -1
- package/packages/keyword-broken-string/index.js +1 -1
- package/packages/keyword-curry/index.js +1 -1
- package/packages/keyword-export-no-const/index.js +17 -3
- package/packages/keyword-fn/index.js +1 -1
- package/packages/keyword-freeze/index.js +1 -1
- package/packages/keyword-guard/index.js +1 -1
- package/packages/keyword-if/index.js +1 -1
- package/packages/keyword-import/index.js +1 -1
- package/packages/keyword-missing-initializer/index.js +1 -1
- package/packages/keyword-should/index.js +1 -1
- package/packages/keyword-try/index.js +2 -2
- package/packages/operator-safe-assignment/index.js +1 -1
package/ChangeLog
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
2026.02.12, v7.1.0
|
|
2
|
+
|
|
3
|
+
feature:
|
|
4
|
+
- a3adcd8 goldstein: export-default-from: add support
|
|
5
|
+
|
|
6
|
+
2026.02.11, v7.0.4
|
|
7
|
+
|
|
8
|
+
feature:
|
|
9
|
+
- 1c07bf5 goldstein: apply private import: #operator
|
|
10
|
+
- e2ba82d goldstein: eslint v10.0.0
|
|
11
|
+
- 5de2959 goldstein: eslint-plugin-putout v30.0.1
|
|
12
|
+
- 522853b goldstein: @putout/eslint-flat v4.0.0
|
|
13
|
+
- 9bfa72f goldstein: @cloudcmd/stub v5.0.0
|
|
14
|
+
|
|
1
15
|
2026.01.11, v7.0.3
|
|
2
16
|
|
|
3
17
|
feature:
|
package/README.md
CHANGED
|
@@ -520,6 +520,20 @@ The same as:
|
|
|
520
520
|
export const x = () => {};
|
|
521
521
|
```
|
|
522
522
|
|
|
523
|
+
### `export default from`
|
|
524
|
+
|
|
525
|
+
[ECMAScript Proposal: export default from](https://github.com/tc39/proposal-export-default-from).
|
|
526
|
+
|
|
527
|
+
```js
|
|
528
|
+
export hello from './x.js';
|
|
529
|
+
```
|
|
530
|
+
|
|
531
|
+
The same as:
|
|
532
|
+
|
|
533
|
+
```js
|
|
534
|
+
export {default} from './x.js';
|
|
535
|
+
```
|
|
536
|
+
|
|
523
537
|
### Wrong brace `)`
|
|
524
538
|
|
|
525
539
|
```diff
|