mirror of https://github.com/alibaba/ice.git
chore: update plugin option type of plugin-icestark (#7079)
CI / build (16.x, ubuntu-latest) (push) Has been cancelled
Details
CI / build (16.x, windows-latest) (push) Has been cancelled
Details
CI / build (18.x, ubuntu-latest) (push) Has been cancelled
Details
CI / build (18.x, windows-latest) (push) Has been cancelled
Details
Coverage / coverage (16.x) (push) Has been cancelled
Details
Release / Release (16) (push) Has been cancelled
Details
CI / build (16.x, ubuntu-latest) (push) Has been cancelled
Details
CI / build (16.x, windows-latest) (push) Has been cancelled
Details
CI / build (18.x, ubuntu-latest) (push) Has been cancelled
Details
CI / build (18.x, windows-latest) (push) Has been cancelled
Details
Coverage / coverage (16.x) (push) Has been cancelled
Details
Release / Release (16) (push) Has been cancelled
Details
This commit is contained in:
parent
c943626719
commit
3a99b620cf
|
@ -1,5 +1,9 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 1.2.1
|
||||||
|
|
||||||
|
- fix: plugin type definition of `library`
|
||||||
|
|
||||||
## 1.2.0
|
## 1.2.0
|
||||||
|
|
||||||
### Minor Changes
|
### Minor Changes
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@ice/plugin-icestark",
|
"name": "@ice/plugin-icestark",
|
||||||
"version": "1.2.0",
|
"version": "1.2.1",
|
||||||
"description": "Easy use `icestark` in icejs.",
|
"description": "Easy use `icestark` in icejs.",
|
||||||
"author": "ice-admin@alibaba-inc.com",
|
"author": "ice-admin@alibaba-inc.com",
|
||||||
"homepage": "",
|
"homepage": "",
|
||||||
|
|
|
@ -2,7 +2,7 @@ import type { Plugin } from '@ice/app/types';
|
||||||
|
|
||||||
interface PluginOptions {
|
interface PluginOptions {
|
||||||
type: 'child' | 'framework';
|
type: 'child' | 'framework';
|
||||||
library?: string;
|
library?: string | string[];
|
||||||
}
|
}
|
||||||
|
|
||||||
const PLUGIN_NAME = '@ice/plugin-icestark';
|
const PLUGIN_NAME = '@ice/plugin-icestark';
|
||||||
|
|
Loading…
Reference in New Issue