@mapcreator/api 3.0.0 → 3.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/README.md +6 -3
- package/dist/bundle.browser.js +8615 -8554
- package/dist/bundle.browser.min.js +1 -1
- package/dist/bundle.browser.min.js.LICENSE.txt +12 -12
- package/dist/bundle.js +7129 -7191
- package/dist/bundle.min.js +1 -1
- package/dist/bundle.min.js.LICENSE.txt +8 -8
- package/dist/resources/index.d.ts +1 -0
- package/package.json +8 -7
- package/src/Mapcreator.js +2 -2
- package/src/resources/index.js +1 -0
package/README.md
CHANGED
|
@@ -16,6 +16,8 @@ The library is built to be ran in either the browser or using nodejs.
|
|
|
16
16
|
|
|
17
17
|
- [download library]
|
|
18
18
|
- [minified]
|
|
19
|
+
- [download library (browser)]
|
|
20
|
+
- [minified (browser)]
|
|
19
21
|
|
|
20
22
|
The source code can be found on the [GitLab repo].
|
|
21
23
|
|
|
@@ -36,8 +38,10 @@ Examples can be found in the documentation under the "[Manual]" section.
|
|
|
36
38
|
## License
|
|
37
39
|
See the [LICENSE] file for license information. This project is licensed under a [BSD-3-Clause] license.
|
|
38
40
|
|
|
39
|
-
[download library]: https://
|
|
40
|
-
[minified]: https://
|
|
41
|
+
[download library]: https://unpkg.com/@mapcreator/api@latest/dist/bundle.js
|
|
42
|
+
[minified]: https://unpkg.com/@mapcreator/api@latest/dist/bundle.min.js
|
|
43
|
+
[download library (browser)]: https://unpkg.com/@mapcreator/api@latest/dist/bundle.browser.js
|
|
44
|
+
[minified (browser)]: https://unpkg.com/@mapcreator/api@latest/dist/bundle.browser.min.js
|
|
41
45
|
|
|
42
46
|
[installation]: https://docs.mapcreator.io/wrapper/manual/installation.html
|
|
43
47
|
[building]: https://docs.mapcreator.io/wrapper/manual/building.html
|
|
@@ -48,7 +52,6 @@ See the [LICENSE] file for license information. This project is licensed under a
|
|
|
48
52
|
[GitLab repo]: https://gitlab.com/mapcreator/api-wrapper
|
|
49
53
|
[esdoc]: https://esdoc.org
|
|
50
54
|
[example-basics]: examples/basics.js
|
|
51
|
-
[yarn]: https://yarnpkg.com
|
|
52
55
|
[webpack]: https://webpack.js.org
|
|
53
56
|
[LICENSE]: https://gitlab.com/mapcreator/api-wrapper/-/blob/master/LICENSE
|
|
54
57
|
[BSD-3-Clause]: https://tldrlegal.com/license/bsd-3-clause-license-(revised)
|