Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
<a name="4.3.20-beta.1"></a>
## [4.3.20-beta.1](https://github.com/prijs/pri/compare/3.3.28-beta.5...4.3.20-beta.1) (2023-02-02)


### Bug Fixes

* 判断包名都用package.json中的name ([29e33df](https://github.com/prijs/pri/commit/29e33df))
* 使用reject替代throw,使得child_process子进程可以以异常状态退出 ([ed9d17d](https://github.com/prijs/pri/commit/ed9d17d))
* 修复子package互相引用的时候,测试报错的问题 ([55570a9](https://github.com/prijs/pri/commit/55570a9))
* 修复组件编译模式无差别产生 sourcemap ([06a444f](https://github.com/prijs/pri/commit/06a444f))
* 子包路由解析问题 ([37da1be](https://github.com/prijs/pri/commit/37da1be))
Expand All @@ -15,6 +14,8 @@
* analyse output ([39c6c0c](https://github.com/prijs/pri/commit/39c6c0c))
* auth selected package ([6987871](https://github.com/prijs/pri/commit/6987871))
* autofix package.version while betaBranch ([596b803](https://github.com/prijs/pri/commit/596b803))
* babel ([015ae00](https://github.com/prijs/pri/commit/015ae00))
* babel ([54790e6](https://github.com/prijs/pri/commit/54790e6))
* babel-loader options ([01ec7be](https://github.com/prijs/pri/commit/01ec7be))
* bug ([c37b05b](https://github.com/prijs/pri/commit/c37b05b))
* bug ([b65ab71](https://github.com/prijs/pri/commit/b65ab71))
Expand Down Expand Up @@ -77,6 +78,7 @@
* type ([f67ca43](https://github.com/prijs/pri/commit/f67ca43))
* update ([722c764](https://github.com/prijs/pri/commit/722c764))
* update fork-ts-checker-webpack-plugin ([0caed8e](https://github.com/prijs/pri/commit/0caed8e))
* upgrade babel ([1f8aa7d](https://github.com/prijs/pri/commit/1f8aa7d))
* use sync mode when process.stdio is connected to pipe ([9eb7a50](https://github.com/prijs/pri/commit/9eb7a50))
* version ([fe2136b](https://github.com/prijs/pri/commit/fe2136b))
* WrapContent plugin ([7dffb13](https://github.com/prijs/pri/commit/7dffb13))
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pri",
"version": "4.4.0",
"version": "4.4.1",
"types": "src/node/index.ts",
"main": "built/node/index.js",
"scripts": {
Expand Down
1 change: 1 addition & 0 deletions src/utils/webpack-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -317,6 +317,7 @@ export const getWebpackConfig = async (opts: IOptions) => {
'eot',
'ttf',
'svg',
'.json',
],
},
resolveLoader: {
Expand Down
2 changes: 1 addition & 1 deletion src/utils/webpack-dll-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export const getWebpackDllConfig = (opts: IDllOptions) => {
// Self node_modules
path.join(__dirname, '../../../node_modules'),
],
extensions: ['.js', '.jsx', '.tsx', '.ts', '.scss', '.less', '.css'],
extensions: ['.js', '.jsx', '.tsx', '.ts', '.scss', '.less', '.css', '.json'],
},

resolveLoader: {
Expand Down