You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+3-1
Original file line number
Diff line number
Diff line change
@@ -33,8 +33,10 @@
33
33
* (internal) Bumped all dependencies.
34
34
* (improvement) Allow `++` in JS/TS code.
35
35
* (improvement) The code is now always compiled per entry file
36
-
* (improvement) Ignore `.css` files when compiling webpack. You need to import them manually in your SCSS.
37
36
* (improvement) Build TypeScript for the `esnext` module system, that (amongst other things) allows to use `import()`.
37
+
* (bug) Compile every entry into a separate directory, to avoid issues with the clean plugin.
38
+
* (bc) Now only specific modules in `node_modules` are transformed. You need to set your packages explicity via `.compileNpmPackages(...)`.
39
+
* (feature) Even if not recommended (use SCSS!), we now support compiling CSS via webpack (not as entry point though). The CSS will be injected into the head dynamically.
Copy file name to clipboardExpand all lines: UPGRADE.md
+1
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,7 @@
5
5
* Always build a legacy and a modern JS build.
6
6
* Removed the ability to use the project's `tsconfig.json`.
7
7
* Removed `disableChunkSplitting()`, chunk splitting is now always disabled. Use code splitting instead and remove the call to this method.
8
+
* Now no npm package is built anymore. Define your npm packages that need a transformation via `.compileNpmPackages(...)` (for now only top-level entries support, so either complete vendor or global package name).
0 commit comments