Skip to content

Commit

Permalink
New version 0.0.1-beta.19 Read more https://github.com/mappable-world…
Browse files Browse the repository at this point in the history
  • Loading branch information
xdan committed Jul 20, 2023
1 parent 8dc93ad commit 0d11ec6
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mappable-world/mappable-cli",
"version": "0.0.1-beta.18",
"version": "0.0.1-beta.19",
"description": "Library for encapsulating the logic of autotests and building packages mappable.world js API",
"main": "dist/index.js",
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion template/example/react.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

const {MMapZoomControl} = reactify.module(await mappable.import('@mappable-world/mappable-controls@0.0.1'));

const {MMapButtonExample} = reactify.module(await mappable.import('@mappable-world/%PACKAGE_NAME%@%PACKAGE_VERSION%'));
const {MMapButtonExample} = reactify.module(await mappable.import('%PACKAGE_NAME%@%PACKAGE_VERSION%'));

ReactDOM.render(
<React.StrictMode>
Expand Down
2 changes: 1 addition & 1 deletion template/example/vanilla.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
const {MMap, MMapDefaultSchemeLayer, MMapDefaultFeaturesLayer, MMapControls} = mappable;

const {MMapZoomControl} = await mappable.import('@mappable-world/mappable-controls@0.0.1');
const {MMapButtonExample} = await mappable.import('@mappable-world/%PACKAGE_NAME%@%PACKAGE_VERSION%');
const {MMapButtonExample} = await mappable.import('%PACKAGE_NAME%@%PACKAGE_VERSION%');

map = new MMap(document.getElementById('app'), {location: LOCATION});

Expand Down
2 changes: 1 addition & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ module.exports = (args, env, dir = process.cwd()) => {
},
output: {
clean: true,
publicPath: 'dist',
publicPath: '/dist/',
path: path.resolve(dir, 'dist')
},
devServer: {
Expand Down

0 comments on commit 0d11ec6

Please sign in to comment.