@devsnicket/eunice-dependency-and-structure
Advanced tools
Comparing version 2.4.2 to 2.5.0
const createStackFromYaml = require("./createStackFromYaml"), | ||
createYamlFromStack = require("./createYamlFromStack"), | ||
findItemInStackWithIdentifierHierarchy = require("./findItemInStackWithIdentifierHierarchy"); | ||
findItemInStackWithIdentifierHierarchy = require("./findItemInStackWithIdentifierHierarchy"), | ||
isInnerStack = require("./isInnerStack"); | ||
@@ -8,3 +9,4 @@ module.exports = { | ||
createYamlFromStack, | ||
findItemInStackWithIdentifierHierarchy | ||
findItemInStackWithIdentifierHierarchy, | ||
isInnerStack | ||
}; | ||
@@ -16,5 +18,2 @@ | ||
* | ||
* @typedef {Item[]} Level | ||
* @property {Stack} stack | ||
* | ||
* @typedef Item | ||
@@ -27,2 +26,5 @@ * @property {(DependUpon|DependUponMissingItem|DependUponMissingParent)[]} [dependsUpon] | ||
* | ||
* @typedef {Item[]} Level | ||
* @property {Stack} stack | ||
* | ||
* @typedef DependUpon | ||
@@ -29,0 +31,0 @@ * @property {Item} item |
10
index.js
const | ||
createStackFromYaml = require("./createStackFromYaml"), | ||
createYamlFromStack = require("./createYamlFromStack"), | ||
findItemInStackWithIdentifierHierarchy = require("./findItemInStackWithIdentifierHierarchy"); | ||
findItemInStackWithIdentifierHierarchy = require("./findItemInStackWithIdentifierHierarchy"), | ||
isInnerStack = require("./isInnerStack"); | ||
@@ -11,2 +12,3 @@ module.exports = | ||
findItemInStackWithIdentifierHierarchy, | ||
isInnerStack, | ||
}; | ||
@@ -18,5 +20,2 @@ | ||
* | ||
* @typedef {Item[]} Level | ||
* @property {Stack} stack | ||
* | ||
* @typedef Item | ||
@@ -29,2 +28,5 @@ * @property {(DependUpon|DependUponMissingItem|DependUponMissingParent)[]} [dependsUpon] | ||
* | ||
* @typedef {Item[]} Level | ||
* @property {Stack} stack | ||
* | ||
* @typedef DependUpon | ||
@@ -31,0 +33,0 @@ * @property {Item} item |
@@ -63,3 +63,4 @@ { | ||
"scripts": { | ||
"build": "npx babel -d dist --ignore dist/*,dist/**/*,node_modules/**/*,**/tests/**,**/tests/**,test-coverage/**,**/test.js --plugins transform-object-rest-spread -s true .", | ||
"all": "npm run spellcheck && npm run lint && npm run build && npm run test", | ||
"build": "rm -rf dist && npx babel -d dist --ignore dist/*,dist/**/*,node_modules/**/*,**/tests/**,**/tests/**,test-coverage/**,**/test.js --plugins transform-object-rest-spread -s true .", | ||
"lint": "npx eslint .", | ||
@@ -69,3 +70,3 @@ "spellcheck": "npx cspell *.js **/*.js *.md **/*.md", | ||
}, | ||
"version": "2.4.2" | ||
"version": "2.5.0" | ||
} |
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
149471
114
3034