Skip to content

Commit

Permalink
fix: modify default value of generateRuntime (#4156)
Browse files Browse the repository at this point in the history
  • Loading branch information
ClarkXia authored Mar 11, 2021
1 parent b70ea9c commit 1f0f288
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 2 additions & 2 deletions packages/icejs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ice.js",
"version": "1.17.0",
"version": "1.17.1",
"description": "command line interface and builtin plugin for icejs",
"author": "[email protected]",
"homepage": "",
Expand All @@ -22,7 +22,7 @@
},
"dependencies": {
"@alib/build-scripts": "^0.1.13",
"build-plugin-app-core": "1.4.0",
"build-plugin-app-core": "1.4.1",
"build-plugin-helmet": "1.0.2",
"build-plugin-ice-auth": "1.7.3",
"build-plugin-ice-config": "1.8.0",
Expand Down
4 changes: 4 additions & 0 deletions packages/plugin-app-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 1.4.1

- [chore] set default value to false of generateRuntime

## 1.4.0

- [feat] refactor import runtime modules
Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-app-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "build-plugin-app-core",
"version": "1.4.0",
"version": "1.4.1",
"description": "the core plugin for icejs and raxjs.",
"author": "[email protected]",
"homepage": "",
Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-app-core/src/constant.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const USER_CONFIG = [
// add generateRuntime in case of runtimes do not pass the ts checker
name: 'generateRuntime',
validation: 'boolean',
defaultValue: true,
defaultValue: false,
}
];

Expand Down

0 comments on commit 1f0f288

Please sign in to comment.