@wimi/gantt 0.1.0

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/dist/demo.html ADDED
@@ -0,0 +1 @@
1
+ <!doctype html><meta charset="utf-8"><title>VanillaGantt demo</title><script src="./VanillaGantt.umd.js"></script><link rel="stylesheet" href="./VanillaGantt.css"><script>console.log(VanillaGantt)</script>
package/package.json ADDED
@@ -0,0 +1,23 @@
1
+ {
2
+ "name": "@wimi/gantt",
3
+ "version": "0.1.0",
4
+ "description": "Framework-agnostic SVG scheduling gantt chart.",
5
+ "main": "dist/VanillaGantt.common.js",
6
+ "module": "src/index.js",
7
+ "unpkg": "dist/VanillaGantt.umd.min.js",
8
+ "style": "dist/VanillaGantt.css",
9
+ "types": "types/index.d.ts",
10
+ "files": [
11
+ "dist",
12
+ "src",
13
+ "types",
14
+ "README.md"
15
+ ],
16
+ "scripts": {
17
+ "build": "cd ../.. && vue-cli-service build --target lib --name VanillaGantt packages/gantt/src/index.js --dest packages/gantt/dist"
18
+ },
19
+ "sideEffects": [
20
+ "*.css",
21
+ "src/*.css"
22
+ ]
23
+ }