Skip to content

Commit

Permalink
v1.2.2:breaking change:SKYNovel v0.20.4(プラグイン用変更)
Browse files Browse the repository at this point in the history
  • Loading branch information
famibee committed May 16, 2020
1 parent ad847c2 commit 6cc7111
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 12 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,7 @@
# Change Log

## v1.2.2
- breaking change:SKYNovel v0.20.4(プラグイン用クラス定義追加と変更)対応
## v1.2.1
- breaking change:SKYNovel v0.20.3(webpackでumdモジュールバンドル化)対応
## v1.2.0
Expand Down
4 changes: 2 additions & 2 deletions core/app4webpack.js
Expand Up @@ -5,5 +5,5 @@ const hPlg = {};
const h = require('./plugin').default;
for (const nm in h) hPlg[nm] = require(`./plugin/${nm}`);

const {app} = require('skynovel/app');
app(hPlg);
const {SysApp} = require('skynovel/app');
new SysApp(hPlg);
4 changes: 2 additions & 2 deletions core/web4webpack.js
Expand Up @@ -5,5 +5,5 @@ const hPlg = {};
const h = require('./plugin').default;
for (const nm in h) hPlg[nm] = require(`./plugin/${nm}`);

const {web} = require('skynovel/web');
web(hPlg);
const {SysWeb} = require('skynovel/web');
new SysWeb(hPlg);
4 changes: 2 additions & 2 deletions doc/app/index.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions doc/web.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -11,7 +11,7 @@
"about-window": "^1.13.2",
"crypto-js": "^4.0.0",
"humane-js": "^3.2.2",
"skynovel": "^0.20.3"
"skynovel": "^0.20.4"
},
"devDependencies": {
"@types/crypto-js": "^3.1.46",
Expand Down

0 comments on commit 6cc7111

Please sign in to comment.