@problematy/goodmap 0.1.7 → 0.2.1
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 +6 -5
- package/dist/index.min.js +74 -1
- package/dist/index.min.js.LICENSE.txt +31 -2
- package/dist/index.min.js.map +1 -1
- package/package.json +24 -5
package/README.md
CHANGED
|
@@ -17,9 +17,10 @@ If you want to use compiled version you can use cdn here:
|
|
|
17
17
|
|
|
18
18
|
# Development
|
|
19
19
|
|
|
20
|
-
To build static version
|
|
20
|
+
To build and run static version follow these steps:
|
|
21
21
|
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
22
|
+
1. `npm install` -- install all the dependencies in your project,
|
|
23
|
+
2. building:
|
|
24
|
+
- `npm run build` -- which builds production ready version,
|
|
25
|
+
- `npm run dev-build` -- which is useful in debugging,
|
|
26
|
+
3. `npm run serve` -- run development server version.
|