becomap 1.6.1 → 1.6.2
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 +15 -15
- package/lib/becomap.js +1 -1
- package/lib/index.d.ts +83 -75
- package/package.json +72 -70
- package/public/index.html +500 -0
- package/webpack.umd.config.js +91 -0
package/README.md
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
# 🚀 Welcome to your new awesome project!
|
|
2
|
-
|
|
3
|
-
This project has been created using **webpack-cli**, you can now run
|
|
4
|
-
|
|
5
|
-
```
|
|
6
|
-
npm run build
|
|
7
|
-
```
|
|
8
|
-
|
|
9
|
-
or
|
|
10
|
-
|
|
11
|
-
```
|
|
12
|
-
yarn build
|
|
13
|
-
```
|
|
14
|
-
|
|
15
|
-
to bundle your application
|
|
1
|
+
# 🚀 Welcome to your new awesome project!
|
|
2
|
+
|
|
3
|
+
This project has been created using **webpack-cli**, you can now run
|
|
4
|
+
|
|
5
|
+
```
|
|
6
|
+
npm run build
|
|
7
|
+
```
|
|
8
|
+
|
|
9
|
+
or
|
|
10
|
+
|
|
11
|
+
```
|
|
12
|
+
yarn build
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
to bundle your application
|