theprogrammablemind_4wp
Advanced tools
Comparing version 7.3.9-beta.9 to 7.3.9-beta.10
@@ -18,3 +18,3 @@ { | ||
"lint": "eslint \"**/*.js\"", | ||
"to": "node node_modules/.bin/jest --runInBand -t NEO", | ||
"to": "node node_modules/.bin/jest --runInBand -t ONE23", | ||
"test": "jest --config ./jest.config.json", | ||
@@ -65,4 +65,4 @@ "test:watch": "npm run test -- --watch" | ||
}, | ||
"version": "7.3.9-beta.9", | ||
"version": "7.3.9-beta.10", | ||
"license": "ISC" | ||
} |
@@ -1942,3 +1942,13 @@ // lookup = (name) => returns <config> | ||
if (['operators', 'bridges', 'words'].includes(property)) { | ||
if ('words' == property) { | ||
for (let word in value) { | ||
for (let def of value[word]) { | ||
if (!def['uuid']) { | ||
throw `All definitions for '${property}' must have the uuid property set (config.uuid). uuid is missing from ${JSON.stringify(def)} for the word '${word}'` | ||
} | ||
} | ||
} | ||
} | ||
if (['operators', 'bridges'].includes(property)) { | ||
for (let def of value) { | ||
@@ -1945,0 +1955,0 @@ if (!def['uuid']) { |
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
156356
4623