@aui.io/apollo 0.1.4 → 0.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/node_modules/@aui.io/apollo-cli/node_modules/commander/LICENSE +22 -0
- package/node_modules/@aui.io/apollo-cli/node_modules/commander/Readme.md +1176 -0
- package/node_modules/@aui.io/apollo-cli/node_modules/commander/esm.mjs +16 -0
- package/node_modules/@aui.io/apollo-cli/node_modules/commander/index.js +24 -0
- package/node_modules/@aui.io/apollo-cli/node_modules/commander/lib/argument.js +150 -0
- package/node_modules/@aui.io/apollo-cli/node_modules/commander/lib/command.js +2777 -0
- package/node_modules/@aui.io/apollo-cli/node_modules/commander/lib/error.js +39 -0
- package/node_modules/@aui.io/apollo-cli/node_modules/commander/lib/help.js +747 -0
- package/node_modules/@aui.io/apollo-cli/node_modules/commander/lib/option.js +380 -0
- package/node_modules/@aui.io/apollo-cli/node_modules/commander/lib/suggestSimilar.js +101 -0
- package/node_modules/@aui.io/apollo-cli/node_modules/commander/package-support.json +19 -0
- package/node_modules/@aui.io/apollo-cli/node_modules/commander/package.json +82 -0
- package/node_modules/@aui.io/apollo-cli/node_modules/commander/typings/esm.d.mts +3 -0
- package/node_modules/@aui.io/apollo-cli/node_modules/commander/typings/index.d.ts +1113 -0
- package/node_modules/@aui.io/apollo-cli/node_modules/picocolors/LICENSE +15 -0
- package/node_modules/@aui.io/apollo-cli/node_modules/picocolors/README.md +21 -0
- package/node_modules/@aui.io/apollo-cli/node_modules/picocolors/package.json +25 -0
- package/node_modules/@aui.io/apollo-cli/node_modules/picocolors/picocolors.browser.js +4 -0
- package/node_modules/@aui.io/apollo-cli/node_modules/picocolors/picocolors.d.ts +5 -0
- package/node_modules/@aui.io/apollo-cli/node_modules/picocolors/picocolors.js +75 -0
- package/node_modules/@aui.io/apollo-cli/node_modules/picocolors/types.d.ts +51 -0
- package/node_modules/@aui.io/apollo-cli/package.json +3 -4
- package/node_modules/@aui.io/apollo-core/node_modules/picocolors/LICENSE +15 -0
- package/node_modules/@aui.io/apollo-core/node_modules/picocolors/README.md +21 -0
- package/node_modules/@aui.io/apollo-core/node_modules/picocolors/package.json +25 -0
- package/node_modules/@aui.io/apollo-core/node_modules/picocolors/picocolors.browser.js +4 -0
- package/node_modules/@aui.io/apollo-core/node_modules/picocolors/picocolors.d.ts +5 -0
- package/node_modules/@aui.io/apollo-core/node_modules/picocolors/picocolors.js +75 -0
- package/node_modules/@aui.io/apollo-core/node_modules/picocolors/types.d.ts +51 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/LICENSE +13 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/README.md +172 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/bin.mjs +11 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/compose/compose-collection.js +88 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/compose/compose-doc.js +43 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/compose/compose-node.js +109 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/compose/compose-scalar.js +86 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/compose/composer.js +219 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/compose/resolve-block-map.js +115 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/compose/resolve-block-scalar.js +198 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/compose/resolve-block-seq.js +49 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/compose/resolve-end.js +37 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/compose/resolve-flow-collection.js +207 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/compose/resolve-flow-scalar.js +225 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/compose/resolve-props.js +146 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/compose/util-contains-newline.js +34 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/compose/util-empty-scalar-position.js +26 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/compose/util-flow-indent-check.js +15 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/compose/util-map-includes.js +13 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/doc/Document.js +335 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/doc/anchors.js +71 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/doc/applyReviver.js +55 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/doc/createNode.js +88 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/doc/directives.js +176 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/errors.js +57 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/index.js +17 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/log.js +11 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/nodes/Alias.js +116 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/nodes/Collection.js +147 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/nodes/Node.js +38 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/nodes/Pair.js +36 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/nodes/Scalar.js +24 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/nodes/YAMLMap.js +144 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/nodes/YAMLSeq.js +113 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/nodes/addPairToJSMap.js +63 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/nodes/identity.js +36 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/nodes/toJS.js +37 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/parse/cst-scalar.js +214 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/parse/cst-stringify.js +61 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/parse/cst-visit.js +97 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/parse/cst.js +98 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/parse/lexer.js +721 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/parse/line-counter.js +39 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/parse/parser.js +975 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/public-api.js +102 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/schema/Schema.js +37 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/schema/common/map.js +17 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/schema/common/null.js +15 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/schema/common/seq.js +17 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/schema/common/string.js +14 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/schema/core/bool.js +19 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/schema/core/float.js +43 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/schema/core/int.js +38 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/schema/core/schema.js +23 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/schema/json/schema.js +62 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/schema/tags.js +96 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/schema/yaml-1.1/binary.js +58 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/schema/yaml-1.1/bool.js +26 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/schema/yaml-1.1/float.js +46 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/schema/yaml-1.1/int.js +71 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/schema/yaml-1.1/merge.js +67 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/schema/yaml-1.1/omap.js +74 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/schema/yaml-1.1/pairs.js +78 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/schema/yaml-1.1/schema.js +39 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/schema/yaml-1.1/set.js +93 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/schema/yaml-1.1/timestamp.js +101 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/stringify/foldFlowLines.js +146 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/stringify/stringify.js +129 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/stringify/stringifyCollection.js +153 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/stringify/stringifyComment.js +20 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/stringify/stringifyDocument.js +85 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/stringify/stringifyNumber.js +25 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/stringify/stringifyPair.js +150 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/stringify/stringifyString.js +336 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/util.js +11 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/dist/visit.js +233 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/index.js +5 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/browser/package.json +3 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/cli.d.ts +8 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/cli.mjs +201 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/compose-collection.d.ts +11 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/compose-collection.js +90 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/compose-doc.d.ts +7 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/compose-doc.js +45 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/compose-node.d.ts +29 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/compose-node.js +112 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/compose-scalar.d.ts +5 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/compose-scalar.js +88 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/composer.d.ts +63 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/composer.js +224 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/resolve-block-map.d.ts +6 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/resolve-block-map.js +117 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/resolve-block-scalar.d.ts +11 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/resolve-block-scalar.js +200 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/resolve-block-seq.d.ts +6 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/resolve-block-seq.js +51 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/resolve-end.d.ts +6 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/resolve-end.js +39 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/resolve-flow-collection.d.ts +7 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/resolve-flow-collection.js +209 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/resolve-flow-scalar.d.ts +10 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/resolve-flow-scalar.js +227 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/resolve-props.d.ts +23 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/resolve-props.js +148 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/util-contains-newline.d.ts +2 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/util-contains-newline.js +36 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/util-empty-scalar-position.d.ts +2 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/util-empty-scalar-position.js +28 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/util-flow-indent-check.d.ts +3 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/util-flow-indent-check.js +17 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/util-map-includes.d.ts +4 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/compose/util-map-includes.js +15 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/doc/Document.d.ts +141 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/doc/Document.js +337 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/doc/anchors.d.ts +24 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/doc/anchors.js +76 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/doc/applyReviver.d.ts +9 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/doc/applyReviver.js +57 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/doc/createNode.d.ts +17 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/doc/createNode.js +90 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/doc/directives.d.ts +49 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/doc/directives.js +178 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/errors.d.ts +21 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/errors.js +62 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/index.d.ts +25 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/index.js +50 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/log.d.ts +3 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/log.js +19 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/nodes/Alias.d.ts +29 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/nodes/Alias.js +118 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/nodes/Collection.d.ts +73 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/nodes/Collection.js +151 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/nodes/Node.d.ts +53 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/nodes/Node.js +40 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/nodes/Pair.d.ts +22 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/nodes/Pair.js +39 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/nodes/Scalar.d.ts +47 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/nodes/Scalar.js +27 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/nodes/YAMLMap.d.ts +53 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/nodes/YAMLMap.js +147 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/nodes/YAMLSeq.d.ts +60 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/nodes/YAMLSeq.js +115 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/nodes/addPairToJSMap.d.ts +4 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/nodes/addPairToJSMap.js +65 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/nodes/identity.d.ts +23 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/nodes/identity.js +53 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/nodes/toJS.d.ts +29 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/nodes/toJS.js +39 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/options.d.ts +350 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/parse/cst-scalar.d.ts +64 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/parse/cst-scalar.js +218 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/parse/cst-stringify.d.ts +8 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/parse/cst-stringify.js +63 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/parse/cst-visit.d.ts +39 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/parse/cst-visit.js +99 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/parse/cst.d.ts +109 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/parse/cst.js +112 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/parse/lexer.d.ts +87 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/parse/lexer.js +723 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/parse/line-counter.d.ts +22 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/parse/line-counter.js +41 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/parse/parser.d.ts +84 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/parse/parser.js +980 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/public-api.d.ts +44 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/public-api.js +107 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/Schema.d.ts +17 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/Schema.js +39 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/common/map.d.ts +2 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/common/map.js +19 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/common/null.d.ts +4 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/common/null.js +17 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/common/seq.d.ts +2 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/common/seq.js +19 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/common/string.d.ts +2 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/common/string.js +16 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/core/bool.d.ts +4 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/core/bool.js +21 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/core/float.d.ts +4 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/core/float.js +47 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/core/int.d.ts +4 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/core/int.js +42 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/core/schema.d.ts +1 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/core/schema.js +25 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/json/schema.d.ts +2 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/json/schema.js +64 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/json-schema.d.ts +69 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/tags.d.ts +48 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/tags.js +99 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/types.d.ts +92 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/yaml-1.1/binary.d.ts +2 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/yaml-1.1/binary.js +70 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/yaml-1.1/bool.d.ts +7 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/yaml-1.1/bool.js +29 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/yaml-1.1/float.d.ts +4 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/yaml-1.1/float.js +50 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/yaml-1.1/int.d.ts +5 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/yaml-1.1/int.js +76 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/yaml-1.1/merge.d.ts +9 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/yaml-1.1/merge.js +71 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/yaml-1.1/omap.d.ts +22 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/yaml-1.1/omap.js +77 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/yaml-1.1/pairs.d.ts +10 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/yaml-1.1/pairs.js +82 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/yaml-1.1/schema.d.ts +1 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/yaml-1.1/schema.js +41 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/yaml-1.1/set.d.ts +28 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/yaml-1.1/set.js +96 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/yaml-1.1/timestamp.d.ts +6 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/schema/yaml-1.1/timestamp.js +105 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/stringify/foldFlowLines.d.ts +34 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/stringify/foldFlowLines.js +151 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/stringify/stringify.d.ts +21 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/stringify/stringify.js +132 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/stringify/stringifyCollection.d.ts +17 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/stringify/stringifyCollection.js +155 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/stringify/stringifyComment.d.ts +10 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/stringify/stringifyComment.js +24 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/stringify/stringifyDocument.d.ts +4 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/stringify/stringifyDocument.js +87 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/stringify/stringifyNumber.d.ts +2 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/stringify/stringifyNumber.js +27 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/stringify/stringifyPair.d.ts +3 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/stringify/stringifyPair.js +152 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/stringify/stringifyString.d.ts +9 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/stringify/stringifyString.js +338 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/test-events.d.ts +4 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/test-events.js +134 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/util.d.ts +16 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/util.js +28 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/visit.d.ts +102 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/dist/visit.js +236 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/package.json +97 -0
- package/node_modules/@aui.io/apollo-core/node_modules/yaml/util.js +2 -0
- package/node_modules/@aui.io/apollo-core/package.json +1 -2
- package/node_modules/@aui.io/apollo-tui/node_modules/picocolors/LICENSE +15 -0
- package/node_modules/@aui.io/apollo-tui/node_modules/picocolors/README.md +21 -0
- package/node_modules/@aui.io/apollo-tui/node_modules/picocolors/package.json +25 -0
- package/node_modules/@aui.io/apollo-tui/node_modules/picocolors/picocolors.browser.js +4 -0
- package/node_modules/@aui.io/apollo-tui/node_modules/picocolors/picocolors.d.ts +5 -0
- package/node_modules/@aui.io/apollo-tui/node_modules/picocolors/picocolors.js +75 -0
- package/node_modules/@aui.io/apollo-tui/node_modules/picocolors/types.d.ts +51 -0
- package/node_modules/@aui.io/apollo-tui/node_modules/react/LICENSE +21 -0
- package/node_modules/@aui.io/apollo-tui/node_modules/react/README.md +37 -0
- package/node_modules/@aui.io/apollo-tui/node_modules/react/cjs/react-compiler-runtime.development.js +24 -0
- package/node_modules/@aui.io/apollo-tui/node_modules/react/cjs/react-compiler-runtime.production.js +16 -0
- package/node_modules/@aui.io/apollo-tui/node_modules/react/cjs/react-compiler-runtime.profiling.js +16 -0
- package/node_modules/@aui.io/apollo-tui/node_modules/react/cjs/react-jsx-dev-runtime.development.js +338 -0
- package/node_modules/@aui.io/apollo-tui/node_modules/react/cjs/react-jsx-dev-runtime.production.js +14 -0
- package/node_modules/@aui.io/apollo-tui/node_modules/react/cjs/react-jsx-dev-runtime.profiling.js +14 -0
- package/node_modules/@aui.io/apollo-tui/node_modules/react/cjs/react-jsx-dev-runtime.react-server.development.js +370 -0
- package/node_modules/@aui.io/apollo-tui/node_modules/react/cjs/react-jsx-dev-runtime.react-server.production.js +40 -0
- package/node_modules/@aui.io/apollo-tui/node_modules/react/cjs/react-jsx-runtime.development.js +352 -0
- package/node_modules/@aui.io/apollo-tui/node_modules/react/cjs/react-jsx-runtime.production.js +34 -0
- package/node_modules/@aui.io/apollo-tui/node_modules/react/cjs/react-jsx-runtime.profiling.js +34 -0
- package/node_modules/@aui.io/apollo-tui/node_modules/react/cjs/react-jsx-runtime.react-server.development.js +370 -0
- package/node_modules/@aui.io/apollo-tui/node_modules/react/cjs/react-jsx-runtime.react-server.production.js +40 -0
- package/node_modules/@aui.io/apollo-tui/node_modules/react/cjs/react.development.js +1284 -0
- package/node_modules/@aui.io/apollo-tui/node_modules/react/cjs/react.production.js +542 -0
- package/node_modules/@aui.io/apollo-tui/node_modules/react/cjs/react.react-server.development.js +848 -0
- package/node_modules/@aui.io/apollo-tui/node_modules/react/cjs/react.react-server.production.js +423 -0
- package/node_modules/@aui.io/apollo-tui/node_modules/react/compiler-runtime.js +14 -0
- package/node_modules/@aui.io/apollo-tui/node_modules/react/index.js +7 -0
- package/node_modules/@aui.io/apollo-tui/node_modules/react/jsx-dev-runtime.js +7 -0
- package/node_modules/@aui.io/apollo-tui/node_modules/react/jsx-dev-runtime.react-server.js +7 -0
- package/node_modules/@aui.io/apollo-tui/node_modules/react/jsx-runtime.js +7 -0
- package/node_modules/@aui.io/apollo-tui/node_modules/react/jsx-runtime.react-server.js +7 -0
- package/node_modules/@aui.io/apollo-tui/node_modules/react/package.json +51 -0
- package/node_modules/@aui.io/apollo-tui/node_modules/react/react.react-server.js +7 -0
- package/node_modules/@aui.io/apollo-tui/package.json +2 -3
- package/package.json +10 -4
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
ISC License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2021-2024 Oleksii Raspopov, Kostiantyn Denysov, Anton Verinov
|
|
4
|
+
|
|
5
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
6
|
+
purpose with or without fee is hereby granted, provided that the above
|
|
7
|
+
copyright notice and this permission notice appear in all copies.
|
|
8
|
+
|
|
9
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
10
|
+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
11
|
+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
12
|
+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
13
|
+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
14
|
+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
15
|
+
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# picocolors
|
|
2
|
+
|
|
3
|
+
The tiniest and the fastest library for terminal output formatting with ANSI colors.
|
|
4
|
+
|
|
5
|
+
```javascript
|
|
6
|
+
import pc from "picocolors"
|
|
7
|
+
|
|
8
|
+
console.log(
|
|
9
|
+
pc.green(`How are ${pc.italic(`you`)} doing?`)
|
|
10
|
+
)
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
- **No dependencies.**
|
|
14
|
+
- **14 times** smaller and **2 times** faster than chalk.
|
|
15
|
+
- Used by popular tools like PostCSS, SVGO, Stylelint, and Browserslist.
|
|
16
|
+
- Node.js v6+ & browsers support. Support for both CJS and ESM projects.
|
|
17
|
+
- TypeScript type declarations included.
|
|
18
|
+
- [`NO_COLOR`](https://no-color.org/) friendly.
|
|
19
|
+
|
|
20
|
+
## Docs
|
|
21
|
+
Read **[full docs](https://github.com/alexeyraspopov/picocolors#readme)** on GitHub.
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "picocolors",
|
|
3
|
+
"version": "1.1.1",
|
|
4
|
+
"main": "./picocolors.js",
|
|
5
|
+
"types": "./picocolors.d.ts",
|
|
6
|
+
"browser": {
|
|
7
|
+
"./picocolors.js": "./picocolors.browser.js"
|
|
8
|
+
},
|
|
9
|
+
"sideEffects": false,
|
|
10
|
+
"description": "The tiniest and the fastest library for terminal output formatting with ANSI colors",
|
|
11
|
+
"files": [
|
|
12
|
+
"picocolors.*",
|
|
13
|
+
"types.d.ts"
|
|
14
|
+
],
|
|
15
|
+
"keywords": [
|
|
16
|
+
"terminal",
|
|
17
|
+
"colors",
|
|
18
|
+
"formatting",
|
|
19
|
+
"cli",
|
|
20
|
+
"console"
|
|
21
|
+
],
|
|
22
|
+
"author": "Alexey Raspopov",
|
|
23
|
+
"repository": "alexeyraspopov/picocolors",
|
|
24
|
+
"license": "ISC"
|
|
25
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
var x=String;
|
|
2
|
+
var create=function() {return {isColorSupported:false,reset:x,bold:x,dim:x,italic:x,underline:x,inverse:x,hidden:x,strikethrough:x,black:x,red:x,green:x,yellow:x,blue:x,magenta:x,cyan:x,white:x,gray:x,bgBlack:x,bgRed:x,bgGreen:x,bgYellow:x,bgBlue:x,bgMagenta:x,bgCyan:x,bgWhite:x,blackBright:x,redBright:x,greenBright:x,yellowBright:x,blueBright:x,magentaBright:x,cyanBright:x,whiteBright:x,bgBlackBright:x,bgRedBright:x,bgGreenBright:x,bgYellowBright:x,bgBlueBright:x,bgMagentaBright:x,bgCyanBright:x,bgWhiteBright:x}};
|
|
3
|
+
module.exports=create();
|
|
4
|
+
module.exports.createColors = create;
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
let p = process || {}, argv = p.argv || [], env = p.env || {}
|
|
2
|
+
let isColorSupported =
|
|
3
|
+
!(!!env.NO_COLOR || argv.includes("--no-color")) &&
|
|
4
|
+
(!!env.FORCE_COLOR || argv.includes("--color") || p.platform === "win32" || ((p.stdout || {}).isTTY && env.TERM !== "dumb") || !!env.CI)
|
|
5
|
+
|
|
6
|
+
let formatter = (open, close, replace = open) =>
|
|
7
|
+
input => {
|
|
8
|
+
let string = "" + input, index = string.indexOf(close, open.length)
|
|
9
|
+
return ~index ? open + replaceClose(string, close, replace, index) + close : open + string + close
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
let replaceClose = (string, close, replace, index) => {
|
|
13
|
+
let result = "", cursor = 0
|
|
14
|
+
do {
|
|
15
|
+
result += string.substring(cursor, index) + replace
|
|
16
|
+
cursor = index + close.length
|
|
17
|
+
index = string.indexOf(close, cursor)
|
|
18
|
+
} while (~index)
|
|
19
|
+
return result + string.substring(cursor)
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
let createColors = (enabled = isColorSupported) => {
|
|
23
|
+
let f = enabled ? formatter : () => String
|
|
24
|
+
return {
|
|
25
|
+
isColorSupported: enabled,
|
|
26
|
+
reset: f("\x1b[0m", "\x1b[0m"),
|
|
27
|
+
bold: f("\x1b[1m", "\x1b[22m", "\x1b[22m\x1b[1m"),
|
|
28
|
+
dim: f("\x1b[2m", "\x1b[22m", "\x1b[22m\x1b[2m"),
|
|
29
|
+
italic: f("\x1b[3m", "\x1b[23m"),
|
|
30
|
+
underline: f("\x1b[4m", "\x1b[24m"),
|
|
31
|
+
inverse: f("\x1b[7m", "\x1b[27m"),
|
|
32
|
+
hidden: f("\x1b[8m", "\x1b[28m"),
|
|
33
|
+
strikethrough: f("\x1b[9m", "\x1b[29m"),
|
|
34
|
+
|
|
35
|
+
black: f("\x1b[30m", "\x1b[39m"),
|
|
36
|
+
red: f("\x1b[31m", "\x1b[39m"),
|
|
37
|
+
green: f("\x1b[32m", "\x1b[39m"),
|
|
38
|
+
yellow: f("\x1b[33m", "\x1b[39m"),
|
|
39
|
+
blue: f("\x1b[34m", "\x1b[39m"),
|
|
40
|
+
magenta: f("\x1b[35m", "\x1b[39m"),
|
|
41
|
+
cyan: f("\x1b[36m", "\x1b[39m"),
|
|
42
|
+
white: f("\x1b[37m", "\x1b[39m"),
|
|
43
|
+
gray: f("\x1b[90m", "\x1b[39m"),
|
|
44
|
+
|
|
45
|
+
bgBlack: f("\x1b[40m", "\x1b[49m"),
|
|
46
|
+
bgRed: f("\x1b[41m", "\x1b[49m"),
|
|
47
|
+
bgGreen: f("\x1b[42m", "\x1b[49m"),
|
|
48
|
+
bgYellow: f("\x1b[43m", "\x1b[49m"),
|
|
49
|
+
bgBlue: f("\x1b[44m", "\x1b[49m"),
|
|
50
|
+
bgMagenta: f("\x1b[45m", "\x1b[49m"),
|
|
51
|
+
bgCyan: f("\x1b[46m", "\x1b[49m"),
|
|
52
|
+
bgWhite: f("\x1b[47m", "\x1b[49m"),
|
|
53
|
+
|
|
54
|
+
blackBright: f("\x1b[90m", "\x1b[39m"),
|
|
55
|
+
redBright: f("\x1b[91m", "\x1b[39m"),
|
|
56
|
+
greenBright: f("\x1b[92m", "\x1b[39m"),
|
|
57
|
+
yellowBright: f("\x1b[93m", "\x1b[39m"),
|
|
58
|
+
blueBright: f("\x1b[94m", "\x1b[39m"),
|
|
59
|
+
magentaBright: f("\x1b[95m", "\x1b[39m"),
|
|
60
|
+
cyanBright: f("\x1b[96m", "\x1b[39m"),
|
|
61
|
+
whiteBright: f("\x1b[97m", "\x1b[39m"),
|
|
62
|
+
|
|
63
|
+
bgBlackBright: f("\x1b[100m", "\x1b[49m"),
|
|
64
|
+
bgRedBright: f("\x1b[101m", "\x1b[49m"),
|
|
65
|
+
bgGreenBright: f("\x1b[102m", "\x1b[49m"),
|
|
66
|
+
bgYellowBright: f("\x1b[103m", "\x1b[49m"),
|
|
67
|
+
bgBlueBright: f("\x1b[104m", "\x1b[49m"),
|
|
68
|
+
bgMagentaBright: f("\x1b[105m", "\x1b[49m"),
|
|
69
|
+
bgCyanBright: f("\x1b[106m", "\x1b[49m"),
|
|
70
|
+
bgWhiteBright: f("\x1b[107m", "\x1b[49m"),
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
module.exports = createColors()
|
|
75
|
+
module.exports.createColors = createColors
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
export type Formatter = (input: string | number | null | undefined) => string
|
|
2
|
+
|
|
3
|
+
export interface Colors {
|
|
4
|
+
isColorSupported: boolean
|
|
5
|
+
|
|
6
|
+
reset: Formatter
|
|
7
|
+
bold: Formatter
|
|
8
|
+
dim: Formatter
|
|
9
|
+
italic: Formatter
|
|
10
|
+
underline: Formatter
|
|
11
|
+
inverse: Formatter
|
|
12
|
+
hidden: Formatter
|
|
13
|
+
strikethrough: Formatter
|
|
14
|
+
|
|
15
|
+
black: Formatter
|
|
16
|
+
red: Formatter
|
|
17
|
+
green: Formatter
|
|
18
|
+
yellow: Formatter
|
|
19
|
+
blue: Formatter
|
|
20
|
+
magenta: Formatter
|
|
21
|
+
cyan: Formatter
|
|
22
|
+
white: Formatter
|
|
23
|
+
gray: Formatter
|
|
24
|
+
|
|
25
|
+
bgBlack: Formatter
|
|
26
|
+
bgRed: Formatter
|
|
27
|
+
bgGreen: Formatter
|
|
28
|
+
bgYellow: Formatter
|
|
29
|
+
bgBlue: Formatter
|
|
30
|
+
bgMagenta: Formatter
|
|
31
|
+
bgCyan: Formatter
|
|
32
|
+
bgWhite: Formatter
|
|
33
|
+
|
|
34
|
+
blackBright: Formatter
|
|
35
|
+
redBright: Formatter
|
|
36
|
+
greenBright: Formatter
|
|
37
|
+
yellowBright: Formatter
|
|
38
|
+
blueBright: Formatter
|
|
39
|
+
magentaBright: Formatter
|
|
40
|
+
cyanBright: Formatter
|
|
41
|
+
whiteBright: Formatter
|
|
42
|
+
|
|
43
|
+
bgBlackBright: Formatter
|
|
44
|
+
bgRedBright: Formatter
|
|
45
|
+
bgGreenBright: Formatter
|
|
46
|
+
bgYellowBright: Formatter
|
|
47
|
+
bgBlueBright: Formatter
|
|
48
|
+
bgMagentaBright: Formatter
|
|
49
|
+
bgCyanBright: Formatter
|
|
50
|
+
bgWhiteBright: Formatter
|
|
51
|
+
}
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aui.io/apollo-cli",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"private": true,
|
|
3
|
+
"version": "0.1.5",
|
|
5
4
|
"description": "Command-line client for the Apollo runtime",
|
|
6
5
|
"type": "module",
|
|
7
6
|
"engines": {
|
|
@@ -29,12 +28,12 @@
|
|
|
29
28
|
"test": "vitest run"
|
|
30
29
|
},
|
|
31
30
|
"dependencies": {
|
|
32
|
-
"@aui.io/apollo-core": "0.1.
|
|
31
|
+
"@aui.io/apollo-core": "0.1.5",
|
|
33
32
|
"commander": "^14.0.3",
|
|
34
33
|
"picocolors": "^1.1.1"
|
|
35
34
|
},
|
|
36
35
|
"optionalDependencies": {
|
|
37
|
-
"@aui.io/apollo-tui": "0.1.
|
|
36
|
+
"@aui.io/apollo-tui": "0.1.5"
|
|
38
37
|
},
|
|
39
38
|
"devDependencies": {
|
|
40
39
|
"@eslint/js": "^9.39.5",
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
ISC License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2021-2024 Oleksii Raspopov, Kostiantyn Denysov, Anton Verinov
|
|
4
|
+
|
|
5
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
6
|
+
purpose with or without fee is hereby granted, provided that the above
|
|
7
|
+
copyright notice and this permission notice appear in all copies.
|
|
8
|
+
|
|
9
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
10
|
+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
11
|
+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
12
|
+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
13
|
+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
14
|
+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
15
|
+
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# picocolors
|
|
2
|
+
|
|
3
|
+
The tiniest and the fastest library for terminal output formatting with ANSI colors.
|
|
4
|
+
|
|
5
|
+
```javascript
|
|
6
|
+
import pc from "picocolors"
|
|
7
|
+
|
|
8
|
+
console.log(
|
|
9
|
+
pc.green(`How are ${pc.italic(`you`)} doing?`)
|
|
10
|
+
)
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
- **No dependencies.**
|
|
14
|
+
- **14 times** smaller and **2 times** faster than chalk.
|
|
15
|
+
- Used by popular tools like PostCSS, SVGO, Stylelint, and Browserslist.
|
|
16
|
+
- Node.js v6+ & browsers support. Support for both CJS and ESM projects.
|
|
17
|
+
- TypeScript type declarations included.
|
|
18
|
+
- [`NO_COLOR`](https://no-color.org/) friendly.
|
|
19
|
+
|
|
20
|
+
## Docs
|
|
21
|
+
Read **[full docs](https://github.com/alexeyraspopov/picocolors#readme)** on GitHub.
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "picocolors",
|
|
3
|
+
"version": "1.1.1",
|
|
4
|
+
"main": "./picocolors.js",
|
|
5
|
+
"types": "./picocolors.d.ts",
|
|
6
|
+
"browser": {
|
|
7
|
+
"./picocolors.js": "./picocolors.browser.js"
|
|
8
|
+
},
|
|
9
|
+
"sideEffects": false,
|
|
10
|
+
"description": "The tiniest and the fastest library for terminal output formatting with ANSI colors",
|
|
11
|
+
"files": [
|
|
12
|
+
"picocolors.*",
|
|
13
|
+
"types.d.ts"
|
|
14
|
+
],
|
|
15
|
+
"keywords": [
|
|
16
|
+
"terminal",
|
|
17
|
+
"colors",
|
|
18
|
+
"formatting",
|
|
19
|
+
"cli",
|
|
20
|
+
"console"
|
|
21
|
+
],
|
|
22
|
+
"author": "Alexey Raspopov",
|
|
23
|
+
"repository": "alexeyraspopov/picocolors",
|
|
24
|
+
"license": "ISC"
|
|
25
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
var x=String;
|
|
2
|
+
var create=function() {return {isColorSupported:false,reset:x,bold:x,dim:x,italic:x,underline:x,inverse:x,hidden:x,strikethrough:x,black:x,red:x,green:x,yellow:x,blue:x,magenta:x,cyan:x,white:x,gray:x,bgBlack:x,bgRed:x,bgGreen:x,bgYellow:x,bgBlue:x,bgMagenta:x,bgCyan:x,bgWhite:x,blackBright:x,redBright:x,greenBright:x,yellowBright:x,blueBright:x,magentaBright:x,cyanBright:x,whiteBright:x,bgBlackBright:x,bgRedBright:x,bgGreenBright:x,bgYellowBright:x,bgBlueBright:x,bgMagentaBright:x,bgCyanBright:x,bgWhiteBright:x}};
|
|
3
|
+
module.exports=create();
|
|
4
|
+
module.exports.createColors = create;
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
let p = process || {}, argv = p.argv || [], env = p.env || {}
|
|
2
|
+
let isColorSupported =
|
|
3
|
+
!(!!env.NO_COLOR || argv.includes("--no-color")) &&
|
|
4
|
+
(!!env.FORCE_COLOR || argv.includes("--color") || p.platform === "win32" || ((p.stdout || {}).isTTY && env.TERM !== "dumb") || !!env.CI)
|
|
5
|
+
|
|
6
|
+
let formatter = (open, close, replace = open) =>
|
|
7
|
+
input => {
|
|
8
|
+
let string = "" + input, index = string.indexOf(close, open.length)
|
|
9
|
+
return ~index ? open + replaceClose(string, close, replace, index) + close : open + string + close
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
let replaceClose = (string, close, replace, index) => {
|
|
13
|
+
let result = "", cursor = 0
|
|
14
|
+
do {
|
|
15
|
+
result += string.substring(cursor, index) + replace
|
|
16
|
+
cursor = index + close.length
|
|
17
|
+
index = string.indexOf(close, cursor)
|
|
18
|
+
} while (~index)
|
|
19
|
+
return result + string.substring(cursor)
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
let createColors = (enabled = isColorSupported) => {
|
|
23
|
+
let f = enabled ? formatter : () => String
|
|
24
|
+
return {
|
|
25
|
+
isColorSupported: enabled,
|
|
26
|
+
reset: f("\x1b[0m", "\x1b[0m"),
|
|
27
|
+
bold: f("\x1b[1m", "\x1b[22m", "\x1b[22m\x1b[1m"),
|
|
28
|
+
dim: f("\x1b[2m", "\x1b[22m", "\x1b[22m\x1b[2m"),
|
|
29
|
+
italic: f("\x1b[3m", "\x1b[23m"),
|
|
30
|
+
underline: f("\x1b[4m", "\x1b[24m"),
|
|
31
|
+
inverse: f("\x1b[7m", "\x1b[27m"),
|
|
32
|
+
hidden: f("\x1b[8m", "\x1b[28m"),
|
|
33
|
+
strikethrough: f("\x1b[9m", "\x1b[29m"),
|
|
34
|
+
|
|
35
|
+
black: f("\x1b[30m", "\x1b[39m"),
|
|
36
|
+
red: f("\x1b[31m", "\x1b[39m"),
|
|
37
|
+
green: f("\x1b[32m", "\x1b[39m"),
|
|
38
|
+
yellow: f("\x1b[33m", "\x1b[39m"),
|
|
39
|
+
blue: f("\x1b[34m", "\x1b[39m"),
|
|
40
|
+
magenta: f("\x1b[35m", "\x1b[39m"),
|
|
41
|
+
cyan: f("\x1b[36m", "\x1b[39m"),
|
|
42
|
+
white: f("\x1b[37m", "\x1b[39m"),
|
|
43
|
+
gray: f("\x1b[90m", "\x1b[39m"),
|
|
44
|
+
|
|
45
|
+
bgBlack: f("\x1b[40m", "\x1b[49m"),
|
|
46
|
+
bgRed: f("\x1b[41m", "\x1b[49m"),
|
|
47
|
+
bgGreen: f("\x1b[42m", "\x1b[49m"),
|
|
48
|
+
bgYellow: f("\x1b[43m", "\x1b[49m"),
|
|
49
|
+
bgBlue: f("\x1b[44m", "\x1b[49m"),
|
|
50
|
+
bgMagenta: f("\x1b[45m", "\x1b[49m"),
|
|
51
|
+
bgCyan: f("\x1b[46m", "\x1b[49m"),
|
|
52
|
+
bgWhite: f("\x1b[47m", "\x1b[49m"),
|
|
53
|
+
|
|
54
|
+
blackBright: f("\x1b[90m", "\x1b[39m"),
|
|
55
|
+
redBright: f("\x1b[91m", "\x1b[39m"),
|
|
56
|
+
greenBright: f("\x1b[92m", "\x1b[39m"),
|
|
57
|
+
yellowBright: f("\x1b[93m", "\x1b[39m"),
|
|
58
|
+
blueBright: f("\x1b[94m", "\x1b[39m"),
|
|
59
|
+
magentaBright: f("\x1b[95m", "\x1b[39m"),
|
|
60
|
+
cyanBright: f("\x1b[96m", "\x1b[39m"),
|
|
61
|
+
whiteBright: f("\x1b[97m", "\x1b[39m"),
|
|
62
|
+
|
|
63
|
+
bgBlackBright: f("\x1b[100m", "\x1b[49m"),
|
|
64
|
+
bgRedBright: f("\x1b[101m", "\x1b[49m"),
|
|
65
|
+
bgGreenBright: f("\x1b[102m", "\x1b[49m"),
|
|
66
|
+
bgYellowBright: f("\x1b[103m", "\x1b[49m"),
|
|
67
|
+
bgBlueBright: f("\x1b[104m", "\x1b[49m"),
|
|
68
|
+
bgMagentaBright: f("\x1b[105m", "\x1b[49m"),
|
|
69
|
+
bgCyanBright: f("\x1b[106m", "\x1b[49m"),
|
|
70
|
+
bgWhiteBright: f("\x1b[107m", "\x1b[49m"),
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
module.exports = createColors()
|
|
75
|
+
module.exports.createColors = createColors
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
export type Formatter = (input: string | number | null | undefined) => string
|
|
2
|
+
|
|
3
|
+
export interface Colors {
|
|
4
|
+
isColorSupported: boolean
|
|
5
|
+
|
|
6
|
+
reset: Formatter
|
|
7
|
+
bold: Formatter
|
|
8
|
+
dim: Formatter
|
|
9
|
+
italic: Formatter
|
|
10
|
+
underline: Formatter
|
|
11
|
+
inverse: Formatter
|
|
12
|
+
hidden: Formatter
|
|
13
|
+
strikethrough: Formatter
|
|
14
|
+
|
|
15
|
+
black: Formatter
|
|
16
|
+
red: Formatter
|
|
17
|
+
green: Formatter
|
|
18
|
+
yellow: Formatter
|
|
19
|
+
blue: Formatter
|
|
20
|
+
magenta: Formatter
|
|
21
|
+
cyan: Formatter
|
|
22
|
+
white: Formatter
|
|
23
|
+
gray: Formatter
|
|
24
|
+
|
|
25
|
+
bgBlack: Formatter
|
|
26
|
+
bgRed: Formatter
|
|
27
|
+
bgGreen: Formatter
|
|
28
|
+
bgYellow: Formatter
|
|
29
|
+
bgBlue: Formatter
|
|
30
|
+
bgMagenta: Formatter
|
|
31
|
+
bgCyan: Formatter
|
|
32
|
+
bgWhite: Formatter
|
|
33
|
+
|
|
34
|
+
blackBright: Formatter
|
|
35
|
+
redBright: Formatter
|
|
36
|
+
greenBright: Formatter
|
|
37
|
+
yellowBright: Formatter
|
|
38
|
+
blueBright: Formatter
|
|
39
|
+
magentaBright: Formatter
|
|
40
|
+
cyanBright: Formatter
|
|
41
|
+
whiteBright: Formatter
|
|
42
|
+
|
|
43
|
+
bgBlackBright: Formatter
|
|
44
|
+
bgRedBright: Formatter
|
|
45
|
+
bgGreenBright: Formatter
|
|
46
|
+
bgYellowBright: Formatter
|
|
47
|
+
bgBlueBright: Formatter
|
|
48
|
+
bgMagentaBright: Formatter
|
|
49
|
+
bgCyanBright: Formatter
|
|
50
|
+
bgWhiteBright: Formatter
|
|
51
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
Copyright Eemeli Aro <eemeli@gmail.com>
|
|
2
|
+
|
|
3
|
+
Permission to use, copy, modify, and/or distribute this software for any purpose
|
|
4
|
+
with or without fee is hereby granted, provided that the above copyright notice
|
|
5
|
+
and this permission notice appear in all copies.
|
|
6
|
+
|
|
7
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
8
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
9
|
+
FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
10
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
|
|
11
|
+
OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
|
12
|
+
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
|
|
13
|
+
THIS SOFTWARE.
|
|
@@ -0,0 +1,172 @@
|
|
|
1
|
+
# YAML <a href="https://www.npmjs.com/package/yaml"><img align="right" src="https://badge.fury.io/js/yaml.svg" title="npm package" /></a>
|
|
2
|
+
|
|
3
|
+
`yaml` is a definitive library for [YAML](https://yaml.org/), the human friendly data serialization standard.
|
|
4
|
+
This library:
|
|
5
|
+
|
|
6
|
+
- Supports both YAML 1.1 and YAML 1.2 and all common data schemas,
|
|
7
|
+
- Passes all of the [yaml-test-suite](https://github.com/yaml/yaml-test-suite) tests,
|
|
8
|
+
- Can accept any string as input without throwing, parsing as much YAML out of it as it can, and
|
|
9
|
+
- Supports parsing, modifying, and writing YAML comments and blank lines.
|
|
10
|
+
|
|
11
|
+
The library is released under the ISC open source license, and the code is [available on GitHub](https://github.com/eemeli/yaml/).
|
|
12
|
+
It has no external dependencies and runs on Node.js as well as modern browsers.
|
|
13
|
+
|
|
14
|
+
For the purposes of versioning, any changes that break any of the documented endpoints or APIs will be considered semver-major breaking changes.
|
|
15
|
+
Undocumented library internals may change between minor versions, and previous APIs may be deprecated (but not removed).
|
|
16
|
+
|
|
17
|
+
The minimum supported TypeScript version of the included typings is 3.9;
|
|
18
|
+
for use in earlier versions you may need to set `skipLibCheck: true` in your config.
|
|
19
|
+
This requirement may be updated between minor versions of the library.
|
|
20
|
+
|
|
21
|
+
For more information, see the project's documentation site: [**eemeli.org/yaml**](https://eemeli.org/yaml/)
|
|
22
|
+
|
|
23
|
+
For build instructions and contribution guidelines, see [docs/CONTRIBUTING.md](docs/CONTRIBUTING.md).
|
|
24
|
+
|
|
25
|
+
To install:
|
|
26
|
+
|
|
27
|
+
```sh
|
|
28
|
+
npm install yaml
|
|
29
|
+
# or
|
|
30
|
+
deno add jsr:@eemeli/yaml
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
**Note:** These docs are for `yaml@2`. For v1, see the [v1.10.0 tag](https://github.com/eemeli/yaml/tree/v1.10.0) for the source and [eemeli.org/yaml/v1](https://eemeli.org/yaml/v1/) for the documentation.
|
|
34
|
+
|
|
35
|
+
## API Overview
|
|
36
|
+
|
|
37
|
+
The API provided by `yaml` has three layers, depending on how deep you need to go: [Parse & Stringify](https://eemeli.org/yaml/#parse-amp-stringify), [Documents](https://eemeli.org/yaml/#documents), and the underlying [Lexer/Parser/Composer](https://eemeli.org/yaml/#parsing-yaml).
|
|
38
|
+
The first has the simplest API and "just works", the second gets you all the bells and whistles supported by the library along with a decent [AST](https://eemeli.org/yaml/#content-nodes), and the third lets you get progressively closer to YAML source, if that's your thing.
|
|
39
|
+
|
|
40
|
+
A [command-line tool](https://eemeli.org/yaml/#command-line-tool) is also included.
|
|
41
|
+
|
|
42
|
+
### Parse & Stringify
|
|
43
|
+
|
|
44
|
+
```js
|
|
45
|
+
import { parse, stringify } from 'yaml'
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
- [`parse(str, reviver?, options?): value`](https://eemeli.org/yaml/#yaml-parse)
|
|
49
|
+
- [`stringify(value, replacer?, options?): string`](https://eemeli.org/yaml/#yaml-stringify)
|
|
50
|
+
|
|
51
|
+
### Documents
|
|
52
|
+
|
|
53
|
+
<!-- prettier-ignore -->
|
|
54
|
+
```js
|
|
55
|
+
import {
|
|
56
|
+
Document,
|
|
57
|
+
isDocument,
|
|
58
|
+
parseAllDocuments,
|
|
59
|
+
parseDocument
|
|
60
|
+
} from 'yaml'
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
- [`Document`](https://eemeli.org/yaml/#documents)
|
|
64
|
+
- [`constructor(value, replacer?, options?)`](https://eemeli.org/yaml/#creating-documents)
|
|
65
|
+
- [`#contents`](https://eemeli.org/yaml/#content-nodes)
|
|
66
|
+
- [`#directives`](https://eemeli.org/yaml/#stream-directives)
|
|
67
|
+
- [`#errors`](https://eemeli.org/yaml/#errors)
|
|
68
|
+
- [`#warnings`](https://eemeli.org/yaml/#errors)
|
|
69
|
+
- [`isDocument(foo): boolean`](https://eemeli.org/yaml/#identifying-node-types)
|
|
70
|
+
- [`parseAllDocuments(str, options?): Document[]`](https://eemeli.org/yaml/#parsing-documents)
|
|
71
|
+
- [`parseDocument(str, options?): Document`](https://eemeli.org/yaml/#parsing-documents)
|
|
72
|
+
|
|
73
|
+
### Content Nodes
|
|
74
|
+
|
|
75
|
+
<!-- prettier-ignore -->
|
|
76
|
+
```js
|
|
77
|
+
import {
|
|
78
|
+
isAlias, isCollection, isMap, isNode,
|
|
79
|
+
isPair, isScalar, isSeq, Scalar,
|
|
80
|
+
visit, visitAsync, YAMLMap, YAMLSeq
|
|
81
|
+
} from 'yaml'
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
- [`isAlias(foo): boolean`](https://eemeli.org/yaml/#identifying-node-types)
|
|
85
|
+
- [`isCollection(foo): boolean`](https://eemeli.org/yaml/#identifying-node-types)
|
|
86
|
+
- [`isMap(foo): boolean`](https://eemeli.org/yaml/#identifying-node-types)
|
|
87
|
+
- [`isNode(foo): boolean`](https://eemeli.org/yaml/#identifying-node-types)
|
|
88
|
+
- [`isPair(foo): boolean`](https://eemeli.org/yaml/#identifying-node-types)
|
|
89
|
+
- [`isScalar(foo): boolean`](https://eemeli.org/yaml/#identifying-node-types)
|
|
90
|
+
- [`isSeq(foo): boolean`](https://eemeli.org/yaml/#identifying-node-types)
|
|
91
|
+
- [`new Scalar(value)`](https://eemeli.org/yaml/#scalar-values)
|
|
92
|
+
- [`new YAMLMap()`](https://eemeli.org/yaml/#collections)
|
|
93
|
+
- [`new YAMLSeq()`](https://eemeli.org/yaml/#collections)
|
|
94
|
+
- [`doc.createAlias(node, name?): Alias`](https://eemeli.org/yaml/#creating-nodes)
|
|
95
|
+
- [`doc.createNode(value, options?): Node`](https://eemeli.org/yaml/#creating-nodes)
|
|
96
|
+
- [`doc.createPair(key, value): Pair`](https://eemeli.org/yaml/#creating-nodes)
|
|
97
|
+
- [`visit(node, visitor)`](https://eemeli.org/yaml/#finding-and-modifying-nodes)
|
|
98
|
+
- [`visitAsync(node, visitor)`](https://eemeli.org/yaml/#finding-and-modifying-nodes)
|
|
99
|
+
|
|
100
|
+
### Parsing YAML
|
|
101
|
+
|
|
102
|
+
```js
|
|
103
|
+
import { Composer, Lexer, Parser } from 'yaml'
|
|
104
|
+
```
|
|
105
|
+
|
|
106
|
+
- [`new Lexer().lex(src)`](https://eemeli.org/yaml/#lexer)
|
|
107
|
+
- [`new Parser(onNewLine?).parse(src)`](https://eemeli.org/yaml/#parser)
|
|
108
|
+
- [`new Composer(options?).compose(tokens)`](https://eemeli.org/yaml/#composer)
|
|
109
|
+
|
|
110
|
+
## YAML.parse
|
|
111
|
+
|
|
112
|
+
```yaml
|
|
113
|
+
# file.yml
|
|
114
|
+
YAML:
|
|
115
|
+
- A human-readable data serialization language
|
|
116
|
+
- https://en.wikipedia.org/wiki/YAML
|
|
117
|
+
yaml:
|
|
118
|
+
- A complete JavaScript implementation
|
|
119
|
+
- https://www.npmjs.com/package/yaml
|
|
120
|
+
```
|
|
121
|
+
|
|
122
|
+
```js
|
|
123
|
+
import fs from 'fs'
|
|
124
|
+
import YAML from 'yaml'
|
|
125
|
+
|
|
126
|
+
YAML.parse('3.14159')
|
|
127
|
+
// 3.14159
|
|
128
|
+
|
|
129
|
+
YAML.parse('[ true, false, maybe, null ]\n')
|
|
130
|
+
// [ true, false, 'maybe', null ]
|
|
131
|
+
|
|
132
|
+
const file = fs.readFileSync('./file.yml', 'utf8')
|
|
133
|
+
YAML.parse(file)
|
|
134
|
+
// { YAML:
|
|
135
|
+
// [ 'A human-readable data serialization language',
|
|
136
|
+
// 'https://en.wikipedia.org/wiki/YAML' ],
|
|
137
|
+
// yaml:
|
|
138
|
+
// [ 'A complete JavaScript implementation',
|
|
139
|
+
// 'https://www.npmjs.com/package/yaml' ] }
|
|
140
|
+
```
|
|
141
|
+
|
|
142
|
+
## YAML.stringify
|
|
143
|
+
|
|
144
|
+
```js
|
|
145
|
+
import YAML from 'yaml'
|
|
146
|
+
|
|
147
|
+
YAML.stringify(3.14159)
|
|
148
|
+
// '3.14159\n'
|
|
149
|
+
|
|
150
|
+
YAML.stringify([true, false, 'maybe', null])
|
|
151
|
+
// `- true
|
|
152
|
+
// - false
|
|
153
|
+
// - maybe
|
|
154
|
+
// - null
|
|
155
|
+
// `
|
|
156
|
+
|
|
157
|
+
YAML.stringify({ number: 3, plain: 'string', block: 'two\nlines\n' })
|
|
158
|
+
// `number: 3
|
|
159
|
+
// plain: string
|
|
160
|
+
// block: |
|
|
161
|
+
// two
|
|
162
|
+
// lines
|
|
163
|
+
// `
|
|
164
|
+
```
|
|
165
|
+
|
|
166
|
+
---
|
|
167
|
+
|
|
168
|
+
Browser testing provided by:
|
|
169
|
+
|
|
170
|
+
<a href="https://www.browserstack.com/open-source">
|
|
171
|
+
<img width=200 src="https://eemeli.org/yaml/images/browserstack.svg" alt="BrowserStack" />
|
|
172
|
+
</a>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
import { UserError, cli, help } from './dist/cli.mjs'
|
|
4
|
+
|
|
5
|
+
cli(process.stdin, error => {
|
|
6
|
+
if (error instanceof UserError) {
|
|
7
|
+
if (error.code === UserError.ARGS) console.error(`${help}\n`)
|
|
8
|
+
console.error(error.message)
|
|
9
|
+
process.exitCode = error.code
|
|
10
|
+
} else if (error) throw error
|
|
11
|
+
})
|