@mappable-world/mappable-cli
Advanced tools
Comparing version 0.0.1-beta.22 to 0.0.1-beta.23
@@ -27,2 +27,2 @@ # Contributing | ||
New version will be published in github actions | ||
New version will be published in github actions. |
@@ -55,3 +55,4 @@ #!/usr/bin/env node | ||
log('To get started in the `.env` file, you need to declare `APIKEY` https://mappable.world/docs/js-api/quickstart.html#get-api-key'); | ||
log('Run:', 'npm start'); | ||
log('Dev server:', 'npm start'); | ||
log('Tests:', 'npm test'); | ||
process.exit(); | ||
@@ -58,0 +59,0 @@ })(); |
{ | ||
"name": "@mappable-world/mappable-cli", | ||
"version": "0.0.1-beta.22", | ||
"version": "0.0.1-beta.23", | ||
"description": "Library for encapsulating the logic of autotests and building packages mappable.world js API", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
@@ -12,5 +12,4 @@ mappable.import.loaders.unshift(async (pkg) => { | ||
const [pkgName] = pkg.split('@') | ||
Object.assign(mappable, window[`${pkgName}`]); | ||
return window[`${pkgName}`]; | ||
Object.assign(mappable, window[`${pkg}`]); | ||
return window[`${pkg}`]; | ||
}) | ||
@@ -17,0 +16,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
37257