@ekz/eslint-config-packer 1.0.0-beta.1 → 1.0.0-beta.2
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 +33 -0
- package/package.json +2 -2
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# @ekz/eslint-config-packer
|
|
2
|
+
|
|
3
|
+
## 1.0.0-beta.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 9a1c556: Fix npm publishing for Yarn workspaces: release now uses `yarn npm publish` so `@ekz/eslint-config-packer` is published as a semver range instead of the broken `workspace:^` protocol left by `changeset publish`.
|
|
8
|
+
|
|
9
|
+
## 1.0.0-beta.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Webpack build performance improvements:
|
|
14
|
+
|
|
15
|
+
- Split TypeScript and JavaScript transpilation (`.ts`/`.tsx` via `ts-loader` only; `.js`/`.jsx` via Babel) to avoid double transpiling TypeScript sources
|
|
16
|
+
- Enable webpack filesystem cache (`node_modules/.cache/webpack`)
|
|
17
|
+
- Use faster dev source maps (`eval-cheap-module-source-map` by default)
|
|
18
|
+
- Enable Babel loader disk cache
|
|
19
|
+
- Lint changed modules only during development (`eslint-webpack-plugin`)
|
|
20
|
+
- Pass explicit `configFile` to ForkTsCheckerWebpackPlugin
|
|
21
|
+
- Exclude `node_modules` from JS/TS loader rules
|
|
22
|
+
|
|
23
|
+
## 1.0.0-beta.0
|
|
24
|
+
|
|
25
|
+
### Major Changes
|
|
26
|
+
|
|
27
|
+
- 0d18d78: Breaking release migrating from 0.16:
|
|
28
|
+
|
|
29
|
+
- **@ekz/packer**: TypeScript source compiled to `dist/`, Node.js 24+, Babel 8, webpack toolchain updates
|
|
30
|
+
- **ESLint**: flat config only (ESLint 10); remove `.eslintrc`, add `eslint.config.js` via `@ekz/packer/recommended` and `/typescript`
|
|
31
|
+
- **@ekz/eslint-config-packer**: flat config modules replacing legacy JSON configs
|
|
32
|
+
|
|
33
|
+
See `packages/packer/README.md` for consumer migration steps.
|
package/package.json
CHANGED