File tree Expand file tree Collapse file tree 3 files changed +13
-1
lines changed
apps/website-new/docs/en/practice/frameworks/next Expand file tree Collapse file tree 3 files changed +13
-1
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ " @module-federation/runtime-tools " : patch
3
+ ---
4
+
5
+ fix: add files property to package.json to exclude build config from npm publish
6
+
7
+ Fixes #3873 where .swcrc file was being published to npm causing Jest test failures.
8
+ Only dist/ and README.md will now be included in the published package.
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ Support for Next.js is ending [read more](https://github.com/module-federation/c
18
18
<Badge text = " SSR (Pages Router)" type = " info" />
19
19
</span >
20
20
<Badge text = " App Router" type = " danger" />
21
- <Badge text = " Not Reccomended " type = " warning" />
21
+ <Badge text = " Not Recommended " type = " warning" />
22
22
#
23
23
24
24
:::tip Demo Reference
Original file line number Diff line number Diff line change 12
12
"url" : " https://github.com/module-federation/core/" ,
13
13
"directory" : " packages/runtime-tools"
14
14
},
15
+ "files" : [
16
+ " dist/" ,
17
+ " README.md"
18
+ ],
15
19
"publishConfig" : {
16
20
"access" : " public"
17
21
},
You can’t perform that action at this time.
0 commit comments