@platformatic/metaconfig
Advanced tools
Comparing version 1.21.0 to 1.21.1
@@ -11,3 +11,4 @@ 'use strict' | ||
UnableToDetermineVersionError: createError(`${ERROR_PREFIX}_UNABLE_TO_DETERMINE_VERSION`, 'unable to determine the version'), | ||
InvalidConfigFileExtensionError: createError(`${ERROR_PREFIX}_INVALID_CONFIG_FILE_EXTENSION`, 'Invalid config file extension. Only yml, yaml, json, json5, toml, tml are supported.') | ||
InvalidConfigFileExtensionError: createError(`${ERROR_PREFIX}_INVALID_CONFIG_FILE_EXTENSION`, 'Invalid config file extension. Only yml, yaml, json, json5, toml, tml are supported.'), | ||
ModulePropertyExists: createError(`${ERROR_PREFIX}_MODULE_PROPERTY_EXISTS`, 'module property exists in the config file') | ||
} |
@@ -40,2 +40,6 @@ 'use strict' | ||
if (data.module !== undefined) { | ||
throw new errors.ModulePropertyExists() | ||
} | ||
if (data.$schema.indexOf('./') === 0) { | ||
@@ -42,0 +46,0 @@ // We assume v0.16 |
{ | ||
"name": "@platformatic/metaconfig", | ||
"version": "1.21.0", | ||
"version": "1.21.1", | ||
"main": "metaconfig.js", | ||
@@ -5,0 +5,0 @@ "description": "Manage mulitple configuration versions at the same time", |
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
24171
338