morghulis 1.0.3 → 1.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -5
- package/dist/main.d.ts +6 -2
- package/dist/morghulis.css +1 -1
- package/dist/morghulis.js +40410 -17
- package/dist/morghulis.umd.cjs +75 -1
- package/package.json +5 -2
package/README.md
CHANGED
@@ -1,5 +1,3 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
Learn more about the recommended Project Setup and IDE Support in the [Vue Docs TypeScript Guide](https://vuejs.org/guide/typescript/overview.html#project-setup).
|
1
|
+
npm run build
|
2
|
+
nrm use npm
|
3
|
+
npm publish
|
package/dist/main.d.ts
CHANGED
@@ -1,2 +1,6 @@
|
|
1
|
-
import
|
2
|
-
|
1
|
+
import 'element-plus/dist/index.css';
|
2
|
+
import 'element-plus/theme-chalk/dark/css-vars.css';
|
3
|
+
declare const plugin: {
|
4
|
+
install: (app: any, options: any) => void;
|
5
|
+
};
|
6
|
+
export default plugin;
|