kn-cli 1.0.13 → 1.0.15
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/build/start.sh +12 -0
- package/build/webpack.config.js +15 -1
- package/package.json +1 -1
- package/readme.md +8 -0
- package/src/build.js +94 -21
- package/src/cli.js +4 -2
- package/src/utils/index.js +9 -2
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/lru-cache/LICENSE +15 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/lru-cache/README.md +166 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/lru-cache/index.js +334 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/lru-cache/package.json +69 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/LICENSE +15 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/README.md +568 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/bin/semver.js +183 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/classes/comparator.js +136 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/classes/index.js +5 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/classes/range.js +519 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/classes/semver.js +287 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/functions/clean.js +6 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/functions/cmp.js +52 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/functions/coerce.js +52 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/functions/compare-build.js +7 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/functions/compare-loose.js +3 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/functions/compare.js +5 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/functions/diff.js +23 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/functions/eq.js +3 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/functions/gt.js +3 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/functions/gte.js +3 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/functions/inc.js +18 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/functions/lt.js +3 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/functions/lte.js +3 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/functions/major.js +3 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/functions/minor.js +3 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/functions/neq.js +3 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/functions/parse.js +33 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/functions/patch.js +3 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/functions/prerelease.js +6 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/functions/rcompare.js +3 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/functions/rsort.js +3 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/functions/satisfies.js +10 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/functions/sort.js +3 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/functions/valid.js +6 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/index.js +48 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/internal/constants.js +17 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/internal/debug.js +9 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/internal/identifiers.js +23 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/internal/parse-options.js +11 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/internal/re.js +182 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/package.json +106 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/preload.js +2 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/range.bnf +16 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/ranges/gtr.js +4 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/ranges/intersects.js +7 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/ranges/ltr.js +4 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/ranges/max-satisfying.js +25 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/ranges/min-satisfying.js +24 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/ranges/min-version.js +61 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/ranges/outside.js +80 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/ranges/simplify.js +47 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/ranges/subset.js +244 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/ranges/to-comparators.js +8 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/ranges/valid.js +11 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/move-file/node_modules/rimraf/CHANGELOG.md +65 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/move-file/node_modules/rimraf/LICENSE +15 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/move-file/node_modules/rimraf/README.md +101 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/move-file/node_modules/rimraf/bin.js +68 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/move-file/node_modules/rimraf/package.json +70 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/move-file/node_modules/rimraf/rimraf.js +360 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/agent-base/node_modules/debug/LICENSE +20 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/agent-base/node_modules/debug/README.md +481 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/agent-base/node_modules/debug/package.json +101 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/agent-base/node_modules/debug/src/browser.js +269 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/agent-base/node_modules/debug/src/common.js +274 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/agent-base/node_modules/debug/src/index.js +10 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/agent-base/node_modules/debug/src/node.js +263 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/agent-base/node_modules/ms/index.js +162 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/agent-base/node_modules/ms/license.md +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/agent-base/node_modules/ms/package.json +69 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/agent-base/node_modules/ms/readme.md +60 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/agentkeepalive/node_modules/debug/LICENSE +20 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/agentkeepalive/node_modules/debug/README.md +481 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/agentkeepalive/node_modules/debug/package.json +101 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/agentkeepalive/node_modules/debug/src/browser.js +269 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/agentkeepalive/node_modules/debug/src/common.js +274 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/agentkeepalive/node_modules/debug/src/index.js +10 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/agentkeepalive/node_modules/debug/src/node.js +263 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/agentkeepalive/node_modules/ms/index.js +162 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/agentkeepalive/node_modules/ms/license.md +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/agentkeepalive/node_modules/ms/package.json +69 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/agentkeepalive/node_modules/ms/readme.md +60 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/anymatch/node_modules/normalize-path/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/anymatch/node_modules/normalize-path/README.md +92 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/anymatch/node_modules/normalize-path/index.js +19 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/anymatch/node_modules/normalize-path/package.json +117 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/are-we-there-yet/node_modules/readable-stream/CONTRIBUTING.md +38 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/are-we-there-yet/node_modules/readable-stream/GOVERNANCE.md +136 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/are-we-there-yet/node_modules/readable-stream/LICENSE +47 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/are-we-there-yet/node_modules/readable-stream/README.md +106 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/are-we-there-yet/node_modules/readable-stream/errors-browser.js +127 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/are-we-there-yet/node_modules/readable-stream/errors.js +116 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/are-we-there-yet/node_modules/readable-stream/experimentalWarning.js +17 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/are-we-there-yet/node_modules/readable-stream/lib/_stream_duplex.js +139 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/are-we-there-yet/node_modules/readable-stream/lib/_stream_passthrough.js +39 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/are-we-there-yet/node_modules/readable-stream/lib/_stream_readable.js +1124 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/are-we-there-yet/node_modules/readable-stream/lib/_stream_transform.js +201 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/are-we-there-yet/node_modules/readable-stream/lib/_stream_writable.js +697 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/are-we-there-yet/node_modules/readable-stream/lib/internal/streams/async_iterator.js +207 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/are-we-there-yet/node_modules/readable-stream/lib/internal/streams/buffer_list.js +210 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/are-we-there-yet/node_modules/readable-stream/lib/internal/streams/destroy.js +105 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/are-we-there-yet/node_modules/readable-stream/lib/internal/streams/end-of-stream.js +104 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/are-we-there-yet/node_modules/readable-stream/lib/internal/streams/from-browser.js +3 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/are-we-there-yet/node_modules/readable-stream/lib/internal/streams/from.js +64 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/are-we-there-yet/node_modules/readable-stream/lib/internal/streams/pipeline.js +97 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/are-we-there-yet/node_modules/readable-stream/lib/internal/streams/state.js +27 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/are-we-there-yet/node_modules/readable-stream/lib/internal/streams/stream-browser.js +1 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/are-we-there-yet/node_modules/readable-stream/lib/internal/streams/stream.js +1 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/are-we-there-yet/node_modules/readable-stream/package.json +97 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/are-we-there-yet/node_modules/readable-stream/readable-browser.js +9 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/are-we-there-yet/node_modules/readable-stream/readable.js +16 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/array-last/node_modules/is-number/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/array-last/node_modules/is-number/README.md +135 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/array-last/node_modules/is-number/index.js +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/array-last/node_modules/is-number/package.json +113 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/array-sort/node_modules/kind-of/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/array-sort/node_modules/kind-of/README.md +342 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/array-sort/node_modules/kind-of/index.js +147 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/array-sort/node_modules/kind-of/package.json +146 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/base/node_modules/define-property/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/base/node_modules/define-property/README.md +95 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/base/node_modules/define-property/index.js +31 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/base/node_modules/define-property/package.json +93 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/base/node_modules/is-accessor-descriptor/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/base/node_modules/is-accessor-descriptor/README.md +144 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/base/node_modules/is-accessor-descriptor/index.js +69 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/base/node_modules/is-accessor-descriptor/package.json +110 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/base/node_modules/is-data-descriptor/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/base/node_modules/is-data-descriptor/README.md +161 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/base/node_modules/is-data-descriptor/index.js +49 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/base/node_modules/is-data-descriptor/package.json +109 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/base/node_modules/is-descriptor/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/base/node_modules/is-descriptor/README.md +193 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/base/node_modules/is-descriptor/index.js +22 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/base/node_modules/is-descriptor/package.json +114 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/braces/node_modules/extend-shallow/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/braces/node_modules/extend-shallow/README.md +61 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/braces/node_modules/extend-shallow/index.js +33 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/braces/node_modules/extend-shallow/package.json +87 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/brace-expansion/.github/FUNDING.yml +2 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/brace-expansion/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/brace-expansion/README.md +135 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/brace-expansion/index.js +203 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/brace-expansion/package.json +74 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/glob/LICENSE +15 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/glob/README.md +378 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/glob/common.js +240 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/glob/glob.js +790 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/glob/package.json +97 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/glob/sync.js +486 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/minimatch/LICENSE +15 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/minimatch/README.md +259 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/minimatch/lib/path.js +4 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/minimatch/minimatch.js +906 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/minimatch/package.json +65 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/rimraf/CHANGELOG.md +65 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/rimraf/LICENSE +15 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/rimraf/README.md +101 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/rimraf/bin.js +68 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/rimraf/node_modules/brace-expansion/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/rimraf/node_modules/brace-expansion/README.md +129 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/rimraf/node_modules/brace-expansion/index.js +201 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/rimraf/node_modules/brace-expansion/package.json +75 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/rimraf/node_modules/glob/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/rimraf/node_modules/glob/README.md +378 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/rimraf/node_modules/glob/common.js +238 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/rimraf/node_modules/glob/glob.js +790 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/rimraf/node_modules/glob/package.json +88 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/rimraf/node_modules/glob/sync.js +486 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/rimraf/node_modules/minimatch/LICENSE +15 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/rimraf/node_modules/minimatch/README.md +230 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/rimraf/node_modules/minimatch/minimatch.js +947 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/rimraf/node_modules/minimatch/package.json +66 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/rimraf/package.json +78 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/rimraf/rimraf.js +360 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/class-utils/node_modules/define-property/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/class-utils/node_modules/define-property/README.md +77 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/class-utils/node_modules/define-property/index.js +31 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/class-utils/node_modules/define-property/package.json +82 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/console-control-strings/README.md~ +140 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/copy-props/node_modules/is-plain-object/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/copy-props/node_modules/is-plain-object/README.md +125 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/copy-props/node_modules/is-plain-object/dist/is-plain-object.js +38 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/copy-props/node_modules/is-plain-object/dist/is-plain-object.mjs +34 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/copy-props/node_modules/is-plain-object/is-plain-object.d.ts +1 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/copy-props/node_modules/is-plain-object/package.json +130 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/default-compare/node_modules/kind-of/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/default-compare/node_modules/kind-of/README.md +342 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/default-compare/node_modules/kind-of/index.js +147 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/default-compare/node_modules/kind-of/package.json +146 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/define-property/node_modules/is-accessor-descriptor/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/define-property/node_modules/is-accessor-descriptor/README.md +144 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/define-property/node_modules/is-accessor-descriptor/index.js +69 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/define-property/node_modules/is-accessor-descriptor/package.json +110 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/define-property/node_modules/is-data-descriptor/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/define-property/node_modules/is-data-descriptor/README.md +161 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/define-property/node_modules/is-data-descriptor/index.js +49 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/define-property/node_modules/is-data-descriptor/package.json +109 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/define-property/node_modules/is-descriptor/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/define-property/node_modules/is-descriptor/README.md +193 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/define-property/node_modules/is-descriptor/index.js +22 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/define-property/node_modules/is-descriptor/package.json +114 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/expand-brackets/node_modules/define-property/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/expand-brackets/node_modules/define-property/README.md +77 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/expand-brackets/node_modules/define-property/index.js +31 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/expand-brackets/node_modules/define-property/package.json +82 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/expand-brackets/node_modules/extend-shallow/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/expand-brackets/node_modules/extend-shallow/README.md +61 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/expand-brackets/node_modules/extend-shallow/index.js +33 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/expand-brackets/node_modules/extend-shallow/package.json +87 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/extend-shallow/node_modules/is-extendable/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/extend-shallow/node_modules/is-extendable/README.md +88 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/extend-shallow/node_modules/is-extendable/index.d.ts +5 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/extend-shallow/node_modules/is-extendable/index.js +14 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/extend-shallow/node_modules/is-extendable/package.json +98 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/extglob/node_modules/define-property/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/extglob/node_modules/define-property/README.md +95 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/extglob/node_modules/define-property/index.js +31 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/extglob/node_modules/define-property/package.json +93 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/extglob/node_modules/extend-shallow/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/extglob/node_modules/extend-shallow/README.md +61 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/extglob/node_modules/extend-shallow/index.js +33 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/extglob/node_modules/extend-shallow/package.json +87 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/extglob/node_modules/is-accessor-descriptor/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/extglob/node_modules/is-accessor-descriptor/README.md +144 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/extglob/node_modules/is-accessor-descriptor/index.js +69 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/extglob/node_modules/is-accessor-descriptor/package.json +110 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/extglob/node_modules/is-data-descriptor/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/extglob/node_modules/is-data-descriptor/README.md +161 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/extglob/node_modules/is-data-descriptor/index.js +49 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/extglob/node_modules/is-data-descriptor/package.json +109 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/extglob/node_modules/is-descriptor/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/extglob/node_modules/is-descriptor/README.md +193 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/extglob/node_modules/is-descriptor/index.js +22 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/extglob/node_modules/is-descriptor/package.json +114 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/fill-range/node_modules/extend-shallow/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/fill-range/node_modules/extend-shallow/README.md +61 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/fill-range/node_modules/extend-shallow/index.js +33 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/fill-range/node_modules/extend-shallow/package.json +87 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gauge/node_modules/ansi-regex/index.d.ts +37 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gauge/node_modules/ansi-regex/index.js +10 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gauge/node_modules/ansi-regex/license +9 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gauge/node_modules/ansi-regex/package.json +87 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gauge/node_modules/ansi-regex/readme.md +78 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gauge/node_modules/is-fullwidth-code-point/index.d.ts +17 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gauge/node_modules/is-fullwidth-code-point/index.js +50 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gauge/node_modules/is-fullwidth-code-point/license +9 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gauge/node_modules/is-fullwidth-code-point/package.json +74 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gauge/node_modules/is-fullwidth-code-point/readme.md +39 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gauge/node_modules/string-width/index.d.ts +29 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gauge/node_modules/string-width/index.js +47 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gauge/node_modules/string-width/license +9 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gauge/node_modules/string-width/package.json +88 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gauge/node_modules/string-width/readme.md +50 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gauge/node_modules/strip-ansi/index.d.ts +17 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gauge/node_modules/strip-ansi/index.js +4 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gauge/node_modules/strip-ansi/license +9 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gauge/node_modules/strip-ansi/package.json +87 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gauge/node_modules/strip-ansi/readme.md +46 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/glob-parent/node_modules/is-glob/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/glob-parent/node_modules/is-glob/README.md +142 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/glob-parent/node_modules/is-glob/index.js +25 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/glob-parent/node_modules/is-glob/package.json +119 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/README.md +240 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/bin/gulp.js +5 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/completion/README.md +20 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/completion/bash +27 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/completion/fish +10 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/completion/powershell +61 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/completion/zsh +25 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/gulp.1 +83 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/index.js +212 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/lib/shared/ansi.js +41 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/lib/shared/cli-options.js +122 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/lib/shared/completion.js +22 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/lib/shared/config/cli-flags.js +25 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/lib/shared/config/env-flags.js +44 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/lib/shared/config/load-files.js +30 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/lib/shared/exit.js +15 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/lib/shared/get-blacklist.js +62 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/lib/shared/log/blacklist-error.js +15 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/lib/shared/log/copy-tree.js +81 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/lib/shared/log/tasks.js +166 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/lib/shared/log/to-console.js +58 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/lib/shared/log/verify.js +28 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/lib/shared/make-title.js +11 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/lib/shared/register-exports.js +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/lib/shared/require-or-import.js +32 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/lib/shared/tildify.js +9 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/lib/shared/verify-dependencies.js +25 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/lib/versioned/^3.7.0/format-error.js +23 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/lib/versioned/^3.7.0/index.js +83 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/lib/versioned/^3.7.0/log/events.js +60 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/lib/versioned/^3.7.0/log/tasks-simple.js +9 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/lib/versioned/^3.7.0/task-tree.js +27 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/lib/versioned/^4.0.0/format-error.js +24 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/lib/versioned/^4.0.0/index.js +96 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/lib/versioned/^4.0.0/log/events.js +50 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/lib/versioned/^4.0.0/log/get-task.js +43 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/lib/versioned/^4.0.0/log/sync-task.js +52 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/lib/versioned/^4.0.0/log/tasks-simple.js +7 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/lib/versioned/^4.0.0-alpha.1/index.js +96 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/lib/versioned/^4.0.0-alpha.2/index.js +96 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/package.json +114 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-load-plugins/node_modules/braces/CHANGELOG.md +184 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-load-plugins/node_modules/braces/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-load-plugins/node_modules/braces/README.md +593 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-load-plugins/node_modules/braces/index.js +170 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-load-plugins/node_modules/braces/lib/compile.js +57 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-load-plugins/node_modules/braces/lib/constants.js +57 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-load-plugins/node_modules/braces/lib/expand.js +113 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-load-plugins/node_modules/braces/lib/parse.js +333 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-load-plugins/node_modules/braces/lib/stringify.js +32 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-load-plugins/node_modules/braces/lib/utils.js +112 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-load-plugins/node_modules/braces/package.json +123 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-load-plugins/node_modules/fill-range/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-load-plugins/node_modules/fill-range/README.md +237 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-load-plugins/node_modules/fill-range/index.js +249 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-load-plugins/node_modules/fill-range/package.json +114 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-load-plugins/node_modules/findup-sync/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-load-plugins/node_modules/findup-sync/README.md +59 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-load-plugins/node_modules/findup-sync/index.js +87 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-load-plugins/node_modules/findup-sync/package.json +105 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-load-plugins/node_modules/is-number/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-load-plugins/node_modules/is-number/README.md +187 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-load-plugins/node_modules/is-number/index.js +18 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-load-plugins/node_modules/is-number/package.json +122 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-load-plugins/node_modules/micromatch/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-load-plugins/node_modules/micromatch/README.md +1011 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-load-plugins/node_modules/micromatch/index.js +467 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-load-plugins/node_modules/micromatch/package.json +196 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-load-plugins/node_modules/to-regex-range/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-load-plugins/node_modules/to-regex-range/README.md +305 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-load-plugins/node_modules/to-regex-range/index.js +288 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-load-plugins/node_modules/to-regex-range/package.json +125 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-util/node_modules/clone/LICENSE +18 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-util/node_modules/clone/README.md +126 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-util/node_modules/clone/clone.iml +10 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-util/node_modules/clone/clone.js +166 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-util/node_modules/clone/package.json +137 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-util/node_modules/clone-stats/LICENSE.md +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-util/node_modules/clone-stats/README.md +17 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-util/node_modules/clone-stats/index.js +13 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-util/node_modules/clone-stats/package.json +60 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-util/node_modules/clone-stats/test.js +36 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-util/node_modules/multipipe/.travis.yml +3 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-util/node_modules/multipipe/History.md +25 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-util/node_modules/multipipe/Makefile +10 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-util/node_modules/multipipe/Readme.md +102 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-util/node_modules/multipipe/index.js +72 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-util/node_modules/multipipe/package.json +48 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-util/node_modules/multipipe/test/multipipe.js +141 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-util/node_modules/replace-ext/.travis.yml +8 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-util/node_modules/replace-ext/LICENSE +20 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-util/node_modules/replace-ext/README.md +44 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-util/node_modules/replace-ext/index.js +9 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-util/node_modules/replace-ext/package.json +68 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-util/node_modules/replace-ext/test/main.js +51 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-util/node_modules/vinyl/LICENSE +20 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-util/node_modules/vinyl/README.md +195 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-util/node_modules/vinyl/index.js +213 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-util/node_modules/vinyl/lib/cloneBuffer.js +7 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-util/node_modules/vinyl/lib/inspectStream.js +11 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-util/node_modules/vinyl/lib/isBuffer.js +1 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-util/node_modules/vinyl/lib/isNull.js +3 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-util/node_modules/vinyl/lib/isStream.js +5 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-util/node_modules/vinyl/package.json +72 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/has-values/node_modules/kind-of/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/has-values/node_modules/kind-of/README.md +267 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/has-values/node_modules/kind-of/index.js +119 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/has-values/node_modules/kind-of/package.json +139 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/http-proxy-agent/node_modules/debug/LICENSE +20 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/http-proxy-agent/node_modules/debug/README.md +481 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/http-proxy-agent/node_modules/debug/package.json +101 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/http-proxy-agent/node_modules/debug/src/browser.js +269 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/http-proxy-agent/node_modules/debug/src/common.js +274 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/http-proxy-agent/node_modules/debug/src/index.js +10 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/http-proxy-agent/node_modules/debug/src/node.js +263 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/http-proxy-agent/node_modules/ms/index.js +162 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/http-proxy-agent/node_modules/ms/license.md +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/http-proxy-agent/node_modules/ms/package.json +69 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/http-proxy-agent/node_modules/ms/readme.md +60 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/https-proxy-agent/node_modules/debug/LICENSE +20 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/https-proxy-agent/node_modules/debug/README.md +481 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/https-proxy-agent/node_modules/debug/package.json +101 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/https-proxy-agent/node_modules/debug/src/browser.js +269 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/https-proxy-agent/node_modules/debug/src/common.js +274 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/https-proxy-agent/node_modules/debug/src/index.js +10 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/https-proxy-agent/node_modules/debug/src/node.js +263 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/https-proxy-agent/node_modules/ms/index.js +162 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/https-proxy-agent/node_modules/ms/license.md +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/https-proxy-agent/node_modules/ms/package.json +69 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/https-proxy-agent/node_modules/ms/readme.md +60 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/is-accessor-descriptor/node_modules/kind-of/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/is-accessor-descriptor/node_modules/kind-of/README.md +261 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/is-accessor-descriptor/node_modules/kind-of/index.js +116 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/is-accessor-descriptor/node_modules/kind-of/package.json +139 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/is-data-descriptor/node_modules/kind-of/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/is-data-descriptor/node_modules/kind-of/README.md +261 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/is-data-descriptor/node_modules/kind-of/index.js +116 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/is-data-descriptor/node_modules/kind-of/package.json +139 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/is-descriptor/node_modules/kind-of/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/is-descriptor/node_modules/kind-of/README.md +342 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/is-descriptor/node_modules/kind-of/index.js +147 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/is-descriptor/node_modules/kind-of/package.json +146 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/is-number/node_modules/kind-of/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/is-number/node_modules/kind-of/README.md +261 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/is-number/node_modules/kind-of/index.js +116 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/is-number/node_modules/kind-of/package.json +139 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/mixin-deep/node_modules/is-extendable/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/mixin-deep/node_modules/is-extendable/README.md +88 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/mixin-deep/node_modules/is-extendable/index.d.ts +5 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/mixin-deep/node_modules/is-extendable/index.js +14 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/mixin-deep/node_modules/is-extendable/package.json +98 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/object-copy/node_modules/define-property/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/object-copy/node_modules/define-property/README.md +77 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/object-copy/node_modules/define-property/index.js +31 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/object-copy/node_modules/define-property/package.json +82 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/object-copy/node_modules/kind-of/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/object-copy/node_modules/kind-of/README.md +261 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/object-copy/node_modules/kind-of/index.js +116 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/object-copy/node_modules/kind-of/package.json +139 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plexer/node_modules/readable-stream/CONTRIBUTING.md +38 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plexer/node_modules/readable-stream/GOVERNANCE.md +136 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plexer/node_modules/readable-stream/LICENSE +47 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plexer/node_modules/readable-stream/README.md +106 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plexer/node_modules/readable-stream/errors-browser.js +127 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plexer/node_modules/readable-stream/errors.js +116 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plexer/node_modules/readable-stream/experimentalWarning.js +17 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plexer/node_modules/readable-stream/lib/_stream_duplex.js +139 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plexer/node_modules/readable-stream/lib/_stream_passthrough.js +39 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plexer/node_modules/readable-stream/lib/_stream_readable.js +1124 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plexer/node_modules/readable-stream/lib/_stream_transform.js +201 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plexer/node_modules/readable-stream/lib/_stream_writable.js +697 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plexer/node_modules/readable-stream/lib/internal/streams/async_iterator.js +207 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plexer/node_modules/readable-stream/lib/internal/streams/buffer_list.js +210 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plexer/node_modules/readable-stream/lib/internal/streams/destroy.js +105 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plexer/node_modules/readable-stream/lib/internal/streams/end-of-stream.js +104 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plexer/node_modules/readable-stream/lib/internal/streams/from-browser.js +3 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plexer/node_modules/readable-stream/lib/internal/streams/from.js +64 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plexer/node_modules/readable-stream/lib/internal/streams/pipeline.js +97 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plexer/node_modules/readable-stream/lib/internal/streams/state.js +27 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plexer/node_modules/readable-stream/lib/internal/streams/stream-browser.js +1 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plexer/node_modules/readable-stream/lib/internal/streams/stream.js +1 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plexer/node_modules/readable-stream/package.json +97 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plexer/node_modules/readable-stream/readable-browser.js +9 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plexer/node_modules/readable-stream/readable.js +16 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plugin-error/node_modules/arr-diff/LICENSE +24 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plugin-error/node_modules/arr-diff/README.md +75 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plugin-error/node_modules/arr-diff/index.js +58 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plugin-error/node_modules/arr-diff/package.json +80 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plugin-error/node_modules/arr-union/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plugin-error/node_modules/arr-union/README.md +85 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plugin-error/node_modules/arr-union/index.js +30 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plugin-error/node_modules/arr-union/package.json +78 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plugin-error/node_modules/array-slice/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plugin-error/node_modules/array-slice/README.md +54 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plugin-error/node_modules/array-slice/index.js +36 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plugin-error/node_modules/array-slice/package.json +68 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plugin-error/node_modules/extend-shallow/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plugin-error/node_modules/extend-shallow/README.md +59 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plugin-error/node_modules/extend-shallow/index.js +36 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plugin-error/node_modules/extend-shallow/package.json +85 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plugin-error/node_modules/kind-of/README.md +155 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plugin-error/node_modules/kind-of/index.js +45 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plugin-error/node_modules/kind-of/package.json +86 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/set-value/node_modules/extend-shallow/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/set-value/node_modules/extend-shallow/README.md +61 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/set-value/node_modules/extend-shallow/index.js +33 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/set-value/node_modules/extend-shallow/package.json +87 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/snapdragon/node_modules/define-property/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/snapdragon/node_modules/define-property/README.md +77 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/snapdragon/node_modules/define-property/index.js +31 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/snapdragon/node_modules/define-property/package.json +82 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/snapdragon/node_modules/extend-shallow/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/snapdragon/node_modules/extend-shallow/README.md +61 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/snapdragon/node_modules/extend-shallow/index.js +33 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/snapdragon/node_modules/extend-shallow/package.json +87 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/snapdragon-node/node_modules/define-property/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/snapdragon-node/node_modules/define-property/README.md +95 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/snapdragon-node/node_modules/define-property/index.js +31 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/snapdragon-node/node_modules/define-property/package.json +93 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/snapdragon-node/node_modules/is-accessor-descriptor/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/snapdragon-node/node_modules/is-accessor-descriptor/README.md +144 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/snapdragon-node/node_modules/is-accessor-descriptor/index.js +69 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/snapdragon-node/node_modules/is-accessor-descriptor/package.json +110 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/snapdragon-node/node_modules/is-data-descriptor/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/snapdragon-node/node_modules/is-data-descriptor/README.md +161 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/snapdragon-node/node_modules/is-data-descriptor/index.js +49 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/snapdragon-node/node_modules/is-data-descriptor/package.json +109 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/snapdragon-node/node_modules/is-descriptor/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/snapdragon-node/node_modules/is-descriptor/README.md +193 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/snapdragon-node/node_modules/is-descriptor/index.js +22 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/snapdragon-node/node_modules/is-descriptor/package.json +114 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/snapdragon-util/node_modules/kind-of/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/snapdragon-util/node_modules/kind-of/README.md +261 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/snapdragon-util/node_modules/kind-of/index.js +116 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/snapdragon-util/node_modules/kind-of/package.json +139 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/socks-proxy-agent/node_modules/debug/LICENSE +20 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/socks-proxy-agent/node_modules/debug/README.md +481 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/socks-proxy-agent/node_modules/debug/package.json +101 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/socks-proxy-agent/node_modules/debug/src/browser.js +269 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/socks-proxy-agent/node_modules/debug/src/common.js +274 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/socks-proxy-agent/node_modules/debug/src/index.js +10 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/socks-proxy-agent/node_modules/debug/src/node.js +263 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/socks-proxy-agent/node_modules/ms/index.js +162 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/socks-proxy-agent/node_modules/ms/license.md +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/socks-proxy-agent/node_modules/ms/package.json +69 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/socks-proxy-agent/node_modules/ms/readme.md +60 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/static-extend/node_modules/define-property/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/static-extend/node_modules/define-property/README.md +77 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/static-extend/node_modules/define-property/index.js +31 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/static-extend/node_modules/define-property/package.json +82 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/streamfilter/node_modules/readable-stream/CONTRIBUTING.md +38 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/streamfilter/node_modules/readable-stream/GOVERNANCE.md +136 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/streamfilter/node_modules/readable-stream/LICENSE +47 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/streamfilter/node_modules/readable-stream/README.md +106 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/streamfilter/node_modules/readable-stream/errors-browser.js +127 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/streamfilter/node_modules/readable-stream/errors.js +116 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/streamfilter/node_modules/readable-stream/experimentalWarning.js +17 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/streamfilter/node_modules/readable-stream/lib/_stream_duplex.js +139 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/streamfilter/node_modules/readable-stream/lib/_stream_passthrough.js +39 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/streamfilter/node_modules/readable-stream/lib/_stream_readable.js +1124 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/streamfilter/node_modules/readable-stream/lib/_stream_transform.js +201 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/streamfilter/node_modules/readable-stream/lib/_stream_writable.js +697 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/streamfilter/node_modules/readable-stream/lib/internal/streams/async_iterator.js +207 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/streamfilter/node_modules/readable-stream/lib/internal/streams/buffer_list.js +210 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/streamfilter/node_modules/readable-stream/lib/internal/streams/destroy.js +105 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/streamfilter/node_modules/readable-stream/lib/internal/streams/end-of-stream.js +104 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/streamfilter/node_modules/readable-stream/lib/internal/streams/from-browser.js +3 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/streamfilter/node_modules/readable-stream/lib/internal/streams/from.js +64 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/streamfilter/node_modules/readable-stream/lib/internal/streams/pipeline.js +97 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/streamfilter/node_modules/readable-stream/lib/internal/streams/state.js +27 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/streamfilter/node_modules/readable-stream/lib/internal/streams/stream-browser.js +1 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/streamfilter/node_modules/readable-stream/lib/internal/streams/stream.js +1 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/streamfilter/node_modules/readable-stream/package.json +97 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/streamfilter/node_modules/readable-stream/readable-browser.js +9 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/streamfilter/node_modules/readable-stream/readable.js +16 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/brace-expansion/.github/FUNDING.yml +2 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/brace-expansion/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/brace-expansion/README.md +135 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/brace-expansion/index.js +203 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/brace-expansion/package.json +74 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/commander/LICENSE +22 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/commander/Readme.md +1114 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/commander/esm.mjs +15 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/commander/index.js +27 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/commander/lib/argument.js +147 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/commander/lib/command.js +2135 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/commander/lib/error.js +45 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/commander/lib/help.js +406 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/commander/lib/option.js +324 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/commander/lib/suggestSimilar.js +100 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/commander/package-support.json +16 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/commander/package.json +121 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/commander/typings/index.d.ts +879 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/glob/LICENSE +15 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/glob/README.md +378 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/glob/common.js +240 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/glob/glob.js +790 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/glob/package.json +97 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/glob/sync.js +486 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/minimatch/LICENSE +15 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/minimatch/README.md +259 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/minimatch/lib/path.js +4 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/minimatch/minimatch.js +906 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/minimatch/package.json +65 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/svg-pathdata/CHANGELOG.md +248 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/svg-pathdata/LICENSE +20 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/svg-pathdata/README.md +162 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/svg-pathdata/index.d.ts +2 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/svg-pathdata/karma.conf.js +69 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/svg-pathdata/lib/SVGPathData.cjs +16 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/svg-pathdata/lib/SVGPathData.cjs.map +1 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/svg-pathdata/lib/SVGPathData.d.ts +43 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/svg-pathdata/lib/SVGPathData.module.js +16 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/svg-pathdata/lib/SVGPathData.module.js.map +1 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/svg-pathdata/lib/SVGPathDataEncoder.d.ts +2 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/svg-pathdata/lib/SVGPathDataParser.d.ts +19 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/svg-pathdata/lib/SVGPathDataTransformer.d.ts +28 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/svg-pathdata/lib/TransformableSVG.d.ts +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/svg-pathdata/lib/mathUtils.d.ts +28 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/svg-pathdata/lib/types.d.ts +75 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/svg-pathdata/package.json +132 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/svg-pathdata/src/SVGPathData.ts +90 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/svg-pathdata/src/SVGPathDataEncoder.ts +62 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/svg-pathdata/src/SVGPathDataParser.ts +290 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/svg-pathdata/src/SVGPathDataTransformer.ts +620 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/svg-pathdata/src/TransformableSVG.ts +74 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/svg-pathdata/src/mathUtils.ts +200 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/svg-pathdata/src/types.ts +41 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/svg-pathdata/tsconfig.json +67 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/svg-pathdata/tslint.json +19 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/to-object-path/node_modules/kind-of/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/to-object-path/node_modules/kind-of/README.md +261 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/to-object-path/node_modules/kind-of/index.js +116 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/to-object-path/node_modules/kind-of/package.json +139 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Makefile +342 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/.deps/Release/addon.node.d +1 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/.deps/Release/obj.target/addon/csrc/addon.o.d +55 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/.deps/Release/obj.target/addon/csrc/enc/backward_references.o.d +20 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/.deps/Release/obj.target/addon/csrc/enc/block_splitter.o.d +17 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/.deps/Release/obj.target/addon/csrc/enc/brotli_bit_stream.o.d +20 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/.deps/Release/obj.target/addon/csrc/enc/encode.o.d +39 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/.deps/Release/obj.target/addon/csrc/enc/encode_parallel.o.d +41 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/.deps/Release/obj.target/addon/csrc/enc/entropy_encode.o.d +11 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/.deps/Release/obj.target/addon/csrc/enc/histogram.o.d +14 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/.deps/Release/obj.target/addon/csrc/enc/literal_cost.o.d +7 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/.deps/Release/obj.target/addon/csrc/enc/metablock.o.d +17 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/.deps/Release/obj.target/addon/csrc/enc/streams.o.d +5 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/.deps/Release/obj.target/addon/csrc/woff2/font.o.d +12 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/.deps/Release/obj.target/addon/csrc/woff2/glyph.o.d +8 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/.deps/Release/obj.target/addon/csrc/woff2/normalize.o.d +17 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/.deps/Release/obj.target/addon/csrc/woff2/table_tags.o.d +5 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/.deps/Release/obj.target/addon/csrc/woff2/transform.o.d +13 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/.deps/Release/obj.target/addon/csrc/woff2/variable_length.o.d +7 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/.deps/Release/obj.target/addon/csrc/woff2/woff2_common.o.d +5 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/.deps/Release/obj.target/addon/csrc/woff2/woff2_enc.o.d +42 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/addon.node +0 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/obj.target/addon/csrc/addon.o +0 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/obj.target/addon/csrc/enc/backward_references.o +0 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/obj.target/addon/csrc/enc/block_splitter.o +0 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/obj.target/addon/csrc/enc/brotli_bit_stream.o +0 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/obj.target/addon/csrc/enc/encode.o +0 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/obj.target/addon/csrc/enc/encode_parallel.o +0 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/obj.target/addon/csrc/enc/entropy_encode.o +0 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/obj.target/addon/csrc/enc/histogram.o +0 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/obj.target/addon/csrc/enc/literal_cost.o +0 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/obj.target/addon/csrc/enc/metablock.o +0 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/obj.target/addon/csrc/enc/streams.o +0 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/obj.target/addon/csrc/woff2/font.o +0 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/obj.target/addon/csrc/woff2/glyph.o +0 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/obj.target/addon/csrc/woff2/normalize.o +0 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/obj.target/addon/csrc/woff2/table_tags.o +0 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/obj.target/addon/csrc/woff2/transform.o +0 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/obj.target/addon/csrc/woff2/variable_length.o +0 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/obj.target/addon/csrc/woff2/woff2_common.o +0 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/obj.target/addon/csrc/woff2/woff2_enc.o +0 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/addon.target.mk +208 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/binding.Makefile +6 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/config.gypi +224 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/gyp-mac-tool +611 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/builderror.log +20 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/node_modules/bufferstreams/CHANGELOG.md +86 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/node_modules/bufferstreams/LICENSE +20 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/node_modules/bufferstreams/README.md +106 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/node_modules/bufferstreams/package.json +160 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/node_modules/bufferstreams/src/index.js +97 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/node_modules/readable-stream/CONTRIBUTING.md +38 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/node_modules/readable-stream/GOVERNANCE.md +136 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/node_modules/readable-stream/LICENSE +47 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/node_modules/readable-stream/README.md +106 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/node_modules/readable-stream/errors-browser.js +127 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/node_modules/readable-stream/errors.js +116 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/node_modules/readable-stream/experimentalWarning.js +17 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/node_modules/readable-stream/lib/_stream_duplex.js +139 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/node_modules/readable-stream/lib/_stream_passthrough.js +39 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/node_modules/readable-stream/lib/_stream_readable.js +1124 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/node_modules/readable-stream/lib/_stream_transform.js +201 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/node_modules/readable-stream/lib/_stream_writable.js +697 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/node_modules/readable-stream/lib/internal/streams/async_iterator.js +207 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/node_modules/readable-stream/lib/internal/streams/buffer_list.js +210 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/node_modules/readable-stream/lib/internal/streams/destroy.js +105 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/node_modules/readable-stream/lib/internal/streams/end-of-stream.js +104 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/node_modules/readable-stream/lib/internal/streams/from-browser.js +3 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/node_modules/readable-stream/lib/internal/streams/from.js +64 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/node_modules/readable-stream/lib/internal/streams/pipeline.js +97 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/node_modules/readable-stream/lib/internal/streams/state.js +27 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/node_modules/readable-stream/lib/internal/streams/stream-browser.js +1 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/node_modules/readable-stream/lib/internal/streams/stream.js +1 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/node_modules/readable-stream/package.json +97 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/node_modules/readable-stream/readable-browser.js +9 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/node_modules/readable-stream/readable.js +16 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/unset-value/node_modules/has-value/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/unset-value/node_modules/has-value/README.md +130 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/unset-value/node_modules/has-value/index.js +19 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/unset-value/node_modules/has-value/node_modules/isobject/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/unset-value/node_modules/has-value/node_modules/isobject/README.md +112 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/unset-value/node_modules/has-value/node_modules/isobject/index.js +14 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/unset-value/node_modules/has-value/node_modules/isobject/package.json +98 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/unset-value/node_modules/has-value/package.json +114 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/unset-value/node_modules/has-values/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/unset-value/node_modules/has-values/README.md +114 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/unset-value/node_modules/has-values/index.js +36 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/unset-value/node_modules/has-values/package.json +106 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/vinyl-sourcemap/node_modules/normalize-path/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/vinyl-sourcemap/node_modules/normalize-path/README.md +92 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/vinyl-sourcemap/node_modules/normalize-path/index.js +19 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/vinyl-sourcemap/node_modules/normalize-path/package.json +117 -0
- package/templates/template_app/build.sh +1 -1
- package/templates/template_app/cli.config.js +7 -0
- package/templates/template_app/public/src/components/Marquee/index.jsx +52 -0
- package/templates/template_app/public/src/components/Marquee/index.less +8 -0
- package/templates/template_app/public/src/index.jsx +2 -2
- package/templates/.DS_Store +0 -0
- package/templates/dev/template_admin/.DS_Store +0 -0
- package/templates/dev/template_admin/public/.DS_Store +0 -0
- package/templates/dev/template_admin/public/pluginjs/.DS_Store +0 -0
- package/templates/dev/template_admin/public/src/.DS_Store +0 -0
- package/templates/dev/template_admin/public/src/assets/.DS_Store +0 -0
- package/templates/dev/template_admin/public/src/assets/iconfont/.DS_Store +0 -0
- package/templates/dev/template_admin/public/src/assets/images/.DS_Store +0 -0
- package/templates/dev/template_admin/public/src/components/.DS_Store +0 -0
- package/templates/dev/template_admin/public/src/components/Layout/.DS_Store +0 -0
- package/templates/dev/template_admin/public/src/components/Page/.DS_Store +0 -0
- package/templates/dev/template_admin/public/src/hooks/.DS_Store +0 -0
- package/templates/dev/template_admin/public/src/pages/.DS_Store +0 -0
- package/templates/dev/template_admin/public/src/services/.DS_Store +0 -0
- package/templates/dev/template_admin/public/src/utils/.DS_Store +0 -0
- package/templates/dev/template_admin/public/static/.DS_Store +0 -0
- package/templates/dev/template_admin/release/.DS_Store +0 -0
- package/templates/dev/template_admin/tools/.DS_Store +0 -0
- package/templates/dev/template_admin/tools/iconfont/.DS_Store +0 -0
- package/templates/dev/template_admin/tools/iconfont/dist/.DS_Store +0 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/.DS_Store +0 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/array-initial/.npmignore +0 -59
- package/templates/dev/template_admin/tools/iconfont/node_modules/clone/.npmignore +0 -4
- package/templates/dev/template_admin/tools/iconfont/node_modules/dateformat/.npmignore +0 -2
- package/templates/dev/template_admin/tools/iconfont/node_modules/debug/.npmignore +0 -9
- package/templates/dev/template_admin/tools/iconfont/node_modules/delegates/.npmignore +0 -1
- package/templates/dev/template_admin/tools/iconfont/node_modules/duplexer2/.npmignore +0 -1
- package/templates/dev/template_admin/tools/iconfont/node_modules/es6-iterator/.npmignore +0 -12
- package/templates/dev/template_admin/tools/iconfont/node_modules/extglob/lib/.DS_Store +0 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/file-uri-to-path/.npmignore +0 -1
- package/templates/dev/template_admin/tools/iconfont/node_modules/function-bind/.npmignore +0 -22
- package/templates/dev/template_admin/tools/iconfont/node_modules/geometry-interfaces/.npmignore +0 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-iconfont-css/.npmignore +0 -2
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-svg2ttf/.npmignore +0 -5
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-ttf2eot/.npmignore +0 -5
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-ttf2woff/.npmignore +0 -5
- package/templates/dev/template_admin/tools/iconfont/node_modules/is-arrayish/.npmignore +0 -5
- package/templates/dev/template_admin/tools/iconfont/node_modules/is-lambda/.npmignore +0 -1
- package/templates/dev/template_admin/tools/iconfont/node_modules/isarray/.npmignore +0 -1
- package/templates/dev/template_admin/tools/iconfont/node_modules/isexe/.npmignore +0 -2
- package/templates/dev/template_admin/tools/iconfont/node_modules/isstream/.npmignore +0 -1
- package/templates/dev/template_admin/tools/iconfont/node_modules/json-stable-stringify-without-jsonify/.npmignore +0 -1
- package/templates/dev/template_admin/tools/iconfont/node_modules/matchdep/.npmignore +0 -2
- package/templates/dev/template_admin/tools/iconfont/node_modules/microbuffer/.npmignore +0 -4
- package/templates/dev/template_admin/tools/iconfont/node_modules/micromatch/lib/.DS_Store +0 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/neatequal/.npmignore +0 -5
- package/templates/dev/template_admin/tools/iconfont/node_modules/pretty-hrtime/.npmignore +0 -10
- package/templates/dev/template_admin/tools/iconfont/node_modules/rechoir/.npmignore +0 -1
- package/templates/dev/template_admin/tools/iconfont/node_modules/require-directory/.npmignore +0 -1
- package/templates/dev/template_admin/tools/iconfont/node_modules/require-main-filename/.npmignore +0 -3
- package/templates/dev/template_admin/tools/iconfont/node_modules/retry/.npmignore +0 -3
- package/templates/dev/template_admin/tools/iconfont/node_modules/sprintf-js/.npmignore +0 -1
- package/templates/dev/template_admin/tools/iconfont/node_modules/stack-trace/.npmignore +0 -1
- package/templates/dev/template_admin/tools/iconfont/node_modules/stream-combiner/.npmignore +0 -3
- package/templates/dev/template_admin/tools/iconfont/node_modules/sver-compat/.npmignore +0 -2
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgfont2svgicons/.npmignore +0 -6
- package/templates/dev/template_admin/tools/iconfont/node_modules/varstream/.npmignore +0 -6
- package/templates/dev/template_admin/tools/iconfont/package-lock.json +0 -4736
- package/templates/dev/template_admin/tools/iconfont/svg/.DS_Store +0 -0
- package/templates/dev/template_admin/tools/tinypng/.DS_Store +0 -0
- package/templates/dev/template_admin/tools/tinypng/img/.DS_Store +0 -0
- package/templates/dev/template_admin/tools/tinypng/package-lock.json +0 -13
- package/templates/template_app/.DS_Store +0 -0
- package/templates/template_app/public/.DS_Store +0 -0
- package/templates/template_app/public/pluginjs/.DS_Store +0 -0
- package/templates/template_app/public/src/.DS_Store +0 -0
- package/templates/template_app/public/src/assets/.DS_Store +0 -0
- package/templates/template_app/public/src/assets/iconfont/.DS_Store +0 -0
- package/templates/template_app/public/src/assets/images/.DS_Store +0 -0
- package/templates/template_app/public/src/components/.DS_Store +0 -0
- package/templates/template_app/public/src/components/Alert/index.jsx +0 -0
- package/templates/template_app/public/src/components/Alert/index.less +0 -0
- package/templates/template_app/public/src/components/Layout/.DS_Store +0 -0
- package/templates/template_app/public/src/components/Loading/index.jsx +0 -14
- package/templates/template_app/public/src/components/Loading/index.less +0 -85
- package/templates/template_app/public/src/components/Page/.DS_Store +0 -0
- package/templates/template_app/public/src/components/mask/index.jsx +0 -47
- package/templates/template_app/public/src/components/mask/index.less +0 -32
- package/templates/template_app/public/src/hooks/.DS_Store +0 -0
- package/templates/template_app/public/src/pages/.DS_Store +0 -0
- package/templates/template_app/public/src/services/.DS_Store +0 -0
- package/templates/template_app/public/src/utils/.DS_Store +0 -0
- package/templates/template_app/public/static/.DS_Store +0 -0
- package/templates/template_app/release/.DS_Store +0 -0
- package/templates/template_app/tools/.DS_Store +0 -0
- package/templates/template_app/tools/iconfont/.DS_Store +0 -0
- package/templates/template_app/tools/iconfont/dist/.DS_Store +0 -0
- package/templates/template_app/tools/iconfont/package-lock.json +0 -4736
- package/templates/template_app/tools/iconfont/svg/.DS_Store +0 -0
- package/templates/template_app/tools/tinypng/.DS_Store +0 -0
- package/templates/template_app/tools/tinypng/img/.DS_Store +0 -0
- package/templates/template_app/tools/tinypng/package-lock.json +0 -13
package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/glob/README.md
ADDED
|
@@ -0,0 +1,378 @@
|
|
|
1
|
+
# Glob
|
|
2
|
+
|
|
3
|
+
Match files using the patterns the shell uses, like stars and stuff.
|
|
4
|
+
|
|
5
|
+
[](https://travis-ci.org/isaacs/node-glob/) [](https://ci.appveyor.com/project/isaacs/node-glob) [](https://coveralls.io/github/isaacs/node-glob?branch=master)
|
|
6
|
+
|
|
7
|
+
This is a glob implementation in JavaScript. It uses the `minimatch`
|
|
8
|
+
library to do its matching.
|
|
9
|
+
|
|
10
|
+

|
|
11
|
+
|
|
12
|
+
## Usage
|
|
13
|
+
|
|
14
|
+
Install with npm
|
|
15
|
+
|
|
16
|
+
```
|
|
17
|
+
npm i glob
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
```javascript
|
|
21
|
+
var glob = require("glob")
|
|
22
|
+
|
|
23
|
+
// options is optional
|
|
24
|
+
glob("**/*.js", options, function (er, files) {
|
|
25
|
+
// files is an array of filenames.
|
|
26
|
+
// If the `nonull` option is set, and nothing
|
|
27
|
+
// was found, then files is ["**/*.js"]
|
|
28
|
+
// er is an error object or null.
|
|
29
|
+
})
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
## Glob Primer
|
|
33
|
+
|
|
34
|
+
"Globs" are the patterns you type when you do stuff like `ls *.js` on
|
|
35
|
+
the command line, or put `build/*` in a `.gitignore` file.
|
|
36
|
+
|
|
37
|
+
Before parsing the path part patterns, braced sections are expanded
|
|
38
|
+
into a set. Braced sections start with `{` and end with `}`, with any
|
|
39
|
+
number of comma-delimited sections within. Braced sections may contain
|
|
40
|
+
slash characters, so `a{/b/c,bcd}` would expand into `a/b/c` and `abcd`.
|
|
41
|
+
|
|
42
|
+
The following characters have special magic meaning when used in a
|
|
43
|
+
path portion:
|
|
44
|
+
|
|
45
|
+
* `*` Matches 0 or more characters in a single path portion
|
|
46
|
+
* `?` Matches 1 character
|
|
47
|
+
* `[...]` Matches a range of characters, similar to a RegExp range.
|
|
48
|
+
If the first character of the range is `!` or `^` then it matches
|
|
49
|
+
any character not in the range.
|
|
50
|
+
* `!(pattern|pattern|pattern)` Matches anything that does not match
|
|
51
|
+
any of the patterns provided.
|
|
52
|
+
* `?(pattern|pattern|pattern)` Matches zero or one occurrence of the
|
|
53
|
+
patterns provided.
|
|
54
|
+
* `+(pattern|pattern|pattern)` Matches one or more occurrences of the
|
|
55
|
+
patterns provided.
|
|
56
|
+
* `*(a|b|c)` Matches zero or more occurrences of the patterns provided
|
|
57
|
+
* `@(pattern|pat*|pat?erN)` Matches exactly one of the patterns
|
|
58
|
+
provided
|
|
59
|
+
* `**` If a "globstar" is alone in a path portion, then it matches
|
|
60
|
+
zero or more directories and subdirectories searching for matches.
|
|
61
|
+
It does not crawl symlinked directories.
|
|
62
|
+
|
|
63
|
+
### Dots
|
|
64
|
+
|
|
65
|
+
If a file or directory path portion has a `.` as the first character,
|
|
66
|
+
then it will not match any glob pattern unless that pattern's
|
|
67
|
+
corresponding path part also has a `.` as its first character.
|
|
68
|
+
|
|
69
|
+
For example, the pattern `a/.*/c` would match the file at `a/.b/c`.
|
|
70
|
+
However the pattern `a/*/c` would not, because `*` does not start with
|
|
71
|
+
a dot character.
|
|
72
|
+
|
|
73
|
+
You can make glob treat dots as normal characters by setting
|
|
74
|
+
`dot:true` in the options.
|
|
75
|
+
|
|
76
|
+
### Basename Matching
|
|
77
|
+
|
|
78
|
+
If you set `matchBase:true` in the options, and the pattern has no
|
|
79
|
+
slashes in it, then it will seek for any file anywhere in the tree
|
|
80
|
+
with a matching basename. For example, `*.js` would match
|
|
81
|
+
`test/simple/basic.js`.
|
|
82
|
+
|
|
83
|
+
### Empty Sets
|
|
84
|
+
|
|
85
|
+
If no matching files are found, then an empty array is returned. This
|
|
86
|
+
differs from the shell, where the pattern itself is returned. For
|
|
87
|
+
example:
|
|
88
|
+
|
|
89
|
+
$ echo a*s*d*f
|
|
90
|
+
a*s*d*f
|
|
91
|
+
|
|
92
|
+
To get the bash-style behavior, set the `nonull:true` in the options.
|
|
93
|
+
|
|
94
|
+
### See Also:
|
|
95
|
+
|
|
96
|
+
* `man sh`
|
|
97
|
+
* `man bash` (Search for "Pattern Matching")
|
|
98
|
+
* `man 3 fnmatch`
|
|
99
|
+
* `man 5 gitignore`
|
|
100
|
+
* [minimatch documentation](https://github.com/isaacs/minimatch)
|
|
101
|
+
|
|
102
|
+
## glob.hasMagic(pattern, [options])
|
|
103
|
+
|
|
104
|
+
Returns `true` if there are any special characters in the pattern, and
|
|
105
|
+
`false` otherwise.
|
|
106
|
+
|
|
107
|
+
Note that the options affect the results. If `noext:true` is set in
|
|
108
|
+
the options object, then `+(a|b)` will not be considered a magic
|
|
109
|
+
pattern. If the pattern has a brace expansion, like `a/{b/c,x/y}`
|
|
110
|
+
then that is considered magical, unless `nobrace:true` is set in the
|
|
111
|
+
options.
|
|
112
|
+
|
|
113
|
+
## glob(pattern, [options], cb)
|
|
114
|
+
|
|
115
|
+
* `pattern` `{String}` Pattern to be matched
|
|
116
|
+
* `options` `{Object}`
|
|
117
|
+
* `cb` `{Function}`
|
|
118
|
+
* `err` `{Error | null}`
|
|
119
|
+
* `matches` `{Array<String>}` filenames found matching the pattern
|
|
120
|
+
|
|
121
|
+
Perform an asynchronous glob search.
|
|
122
|
+
|
|
123
|
+
## glob.sync(pattern, [options])
|
|
124
|
+
|
|
125
|
+
* `pattern` `{String}` Pattern to be matched
|
|
126
|
+
* `options` `{Object}`
|
|
127
|
+
* return: `{Array<String>}` filenames found matching the pattern
|
|
128
|
+
|
|
129
|
+
Perform a synchronous glob search.
|
|
130
|
+
|
|
131
|
+
## Class: glob.Glob
|
|
132
|
+
|
|
133
|
+
Create a Glob object by instantiating the `glob.Glob` class.
|
|
134
|
+
|
|
135
|
+
```javascript
|
|
136
|
+
var Glob = require("glob").Glob
|
|
137
|
+
var mg = new Glob(pattern, options, cb)
|
|
138
|
+
```
|
|
139
|
+
|
|
140
|
+
It's an EventEmitter, and starts walking the filesystem to find matches
|
|
141
|
+
immediately.
|
|
142
|
+
|
|
143
|
+
### new glob.Glob(pattern, [options], [cb])
|
|
144
|
+
|
|
145
|
+
* `pattern` `{String}` pattern to search for
|
|
146
|
+
* `options` `{Object}`
|
|
147
|
+
* `cb` `{Function}` Called when an error occurs, or matches are found
|
|
148
|
+
* `err` `{Error | null}`
|
|
149
|
+
* `matches` `{Array<String>}` filenames found matching the pattern
|
|
150
|
+
|
|
151
|
+
Note that if the `sync` flag is set in the options, then matches will
|
|
152
|
+
be immediately available on the `g.found` member.
|
|
153
|
+
|
|
154
|
+
### Properties
|
|
155
|
+
|
|
156
|
+
* `minimatch` The minimatch object that the glob uses.
|
|
157
|
+
* `options` The options object passed in.
|
|
158
|
+
* `aborted` Boolean which is set to true when calling `abort()`. There
|
|
159
|
+
is no way at this time to continue a glob search after aborting, but
|
|
160
|
+
you can re-use the statCache to avoid having to duplicate syscalls.
|
|
161
|
+
* `cache` Convenience object. Each field has the following possible
|
|
162
|
+
values:
|
|
163
|
+
* `false` - Path does not exist
|
|
164
|
+
* `true` - Path exists
|
|
165
|
+
* `'FILE'` - Path exists, and is not a directory
|
|
166
|
+
* `'DIR'` - Path exists, and is a directory
|
|
167
|
+
* `[file, entries, ...]` - Path exists, is a directory, and the
|
|
168
|
+
array value is the results of `fs.readdir`
|
|
169
|
+
* `statCache` Cache of `fs.stat` results, to prevent statting the same
|
|
170
|
+
path multiple times.
|
|
171
|
+
* `symlinks` A record of which paths are symbolic links, which is
|
|
172
|
+
relevant in resolving `**` patterns.
|
|
173
|
+
* `realpathCache` An optional object which is passed to `fs.realpath`
|
|
174
|
+
to minimize unnecessary syscalls. It is stored on the instantiated
|
|
175
|
+
Glob object, and may be re-used.
|
|
176
|
+
|
|
177
|
+
### Events
|
|
178
|
+
|
|
179
|
+
* `end` When the matching is finished, this is emitted with all the
|
|
180
|
+
matches found. If the `nonull` option is set, and no match was found,
|
|
181
|
+
then the `matches` list contains the original pattern. The matches
|
|
182
|
+
are sorted, unless the `nosort` flag is set.
|
|
183
|
+
* `match` Every time a match is found, this is emitted with the specific
|
|
184
|
+
thing that matched. It is not deduplicated or resolved to a realpath.
|
|
185
|
+
* `error` Emitted when an unexpected error is encountered, or whenever
|
|
186
|
+
any fs error occurs if `options.strict` is set.
|
|
187
|
+
* `abort` When `abort()` is called, this event is raised.
|
|
188
|
+
|
|
189
|
+
### Methods
|
|
190
|
+
|
|
191
|
+
* `pause` Temporarily stop the search
|
|
192
|
+
* `resume` Resume the search
|
|
193
|
+
* `abort` Stop the search forever
|
|
194
|
+
|
|
195
|
+
### Options
|
|
196
|
+
|
|
197
|
+
All the options that can be passed to Minimatch can also be passed to
|
|
198
|
+
Glob to change pattern matching behavior. Also, some have been added,
|
|
199
|
+
or have glob-specific ramifications.
|
|
200
|
+
|
|
201
|
+
All options are false by default, unless otherwise noted.
|
|
202
|
+
|
|
203
|
+
All options are added to the Glob object, as well.
|
|
204
|
+
|
|
205
|
+
If you are running many `glob` operations, you can pass a Glob object
|
|
206
|
+
as the `options` argument to a subsequent operation to shortcut some
|
|
207
|
+
`stat` and `readdir` calls. At the very least, you may pass in shared
|
|
208
|
+
`symlinks`, `statCache`, `realpathCache`, and `cache` options, so that
|
|
209
|
+
parallel glob operations will be sped up by sharing information about
|
|
210
|
+
the filesystem.
|
|
211
|
+
|
|
212
|
+
* `cwd` The current working directory in which to search. Defaults
|
|
213
|
+
to `process.cwd()`.
|
|
214
|
+
* `root` The place where patterns starting with `/` will be mounted
|
|
215
|
+
onto. Defaults to `path.resolve(options.cwd, "/")` (`/` on Unix
|
|
216
|
+
systems, and `C:\` or some such on Windows.)
|
|
217
|
+
* `dot` Include `.dot` files in normal matches and `globstar` matches.
|
|
218
|
+
Note that an explicit dot in a portion of the pattern will always
|
|
219
|
+
match dot files.
|
|
220
|
+
* `nomount` By default, a pattern starting with a forward-slash will be
|
|
221
|
+
"mounted" onto the root setting, so that a valid filesystem path is
|
|
222
|
+
returned. Set this flag to disable that behavior.
|
|
223
|
+
* `mark` Add a `/` character to directory matches. Note that this
|
|
224
|
+
requires additional stat calls.
|
|
225
|
+
* `nosort` Don't sort the results.
|
|
226
|
+
* `stat` Set to true to stat *all* results. This reduces performance
|
|
227
|
+
somewhat, and is completely unnecessary, unless `readdir` is presumed
|
|
228
|
+
to be an untrustworthy indicator of file existence.
|
|
229
|
+
* `silent` When an unusual error is encountered when attempting to
|
|
230
|
+
read a directory, a warning will be printed to stderr. Set the
|
|
231
|
+
`silent` option to true to suppress these warnings.
|
|
232
|
+
* `strict` When an unusual error is encountered when attempting to
|
|
233
|
+
read a directory, the process will just continue on in search of
|
|
234
|
+
other matches. Set the `strict` option to raise an error in these
|
|
235
|
+
cases.
|
|
236
|
+
* `cache` See `cache` property above. Pass in a previously generated
|
|
237
|
+
cache object to save some fs calls.
|
|
238
|
+
* `statCache` A cache of results of filesystem information, to prevent
|
|
239
|
+
unnecessary stat calls. While it should not normally be necessary
|
|
240
|
+
to set this, you may pass the statCache from one glob() call to the
|
|
241
|
+
options object of another, if you know that the filesystem will not
|
|
242
|
+
change between calls. (See "Race Conditions" below.)
|
|
243
|
+
* `symlinks` A cache of known symbolic links. You may pass in a
|
|
244
|
+
previously generated `symlinks` object to save `lstat` calls when
|
|
245
|
+
resolving `**` matches.
|
|
246
|
+
* `sync` DEPRECATED: use `glob.sync(pattern, opts)` instead.
|
|
247
|
+
* `nounique` In some cases, brace-expanded patterns can result in the
|
|
248
|
+
same file showing up multiple times in the result set. By default,
|
|
249
|
+
this implementation prevents duplicates in the result set. Set this
|
|
250
|
+
flag to disable that behavior.
|
|
251
|
+
* `nonull` Set to never return an empty set, instead returning a set
|
|
252
|
+
containing the pattern itself. This is the default in glob(3).
|
|
253
|
+
* `debug` Set to enable debug logging in minimatch and glob.
|
|
254
|
+
* `nobrace` Do not expand `{a,b}` and `{1..3}` brace sets.
|
|
255
|
+
* `noglobstar` Do not match `**` against multiple filenames. (Ie,
|
|
256
|
+
treat it as a normal `*` instead.)
|
|
257
|
+
* `noext` Do not match `+(a|b)` "extglob" patterns.
|
|
258
|
+
* `nocase` Perform a case-insensitive match. Note: on
|
|
259
|
+
case-insensitive filesystems, non-magic patterns will match by
|
|
260
|
+
default, since `stat` and `readdir` will not raise errors.
|
|
261
|
+
* `matchBase` Perform a basename-only match if the pattern does not
|
|
262
|
+
contain any slash characters. That is, `*.js` would be treated as
|
|
263
|
+
equivalent to `**/*.js`, matching all js files in all directories.
|
|
264
|
+
* `nodir` Do not match directories, only files. (Note: to match
|
|
265
|
+
*only* directories, simply put a `/` at the end of the pattern.)
|
|
266
|
+
* `ignore` Add a pattern or an array of glob patterns to exclude matches.
|
|
267
|
+
Note: `ignore` patterns are *always* in `dot:true` mode, regardless
|
|
268
|
+
of any other settings.
|
|
269
|
+
* `follow` Follow symlinked directories when expanding `**` patterns.
|
|
270
|
+
Note that this can result in a lot of duplicate references in the
|
|
271
|
+
presence of cyclic links.
|
|
272
|
+
* `realpath` Set to true to call `fs.realpath` on all of the results.
|
|
273
|
+
In the case of a symlink that cannot be resolved, the full absolute
|
|
274
|
+
path to the matched entry is returned (though it will usually be a
|
|
275
|
+
broken symlink)
|
|
276
|
+
* `absolute` Set to true to always receive absolute paths for matched
|
|
277
|
+
files. Unlike `realpath`, this also affects the values returned in
|
|
278
|
+
the `match` event.
|
|
279
|
+
* `fs` File-system object with Node's `fs` API. By default, the built-in
|
|
280
|
+
`fs` module will be used. Set to a volume provided by a library like
|
|
281
|
+
`memfs` to avoid using the "real" file-system.
|
|
282
|
+
|
|
283
|
+
## Comparisons to other fnmatch/glob implementations
|
|
284
|
+
|
|
285
|
+
While strict compliance with the existing standards is a worthwhile
|
|
286
|
+
goal, some discrepancies exist between node-glob and other
|
|
287
|
+
implementations, and are intentional.
|
|
288
|
+
|
|
289
|
+
The double-star character `**` is supported by default, unless the
|
|
290
|
+
`noglobstar` flag is set. This is supported in the manner of bsdglob
|
|
291
|
+
and bash 4.3, where `**` only has special significance if it is the only
|
|
292
|
+
thing in a path part. That is, `a/**/b` will match `a/x/y/b`, but
|
|
293
|
+
`a/**b` will not.
|
|
294
|
+
|
|
295
|
+
Note that symlinked directories are not crawled as part of a `**`,
|
|
296
|
+
though their contents may match against subsequent portions of the
|
|
297
|
+
pattern. This prevents infinite loops and duplicates and the like.
|
|
298
|
+
|
|
299
|
+
If an escaped pattern has no matches, and the `nonull` flag is set,
|
|
300
|
+
then glob returns the pattern as-provided, rather than
|
|
301
|
+
interpreting the character escapes. For example,
|
|
302
|
+
`glob.match([], "\\*a\\?")` will return `"\\*a\\?"` rather than
|
|
303
|
+
`"*a?"`. This is akin to setting the `nullglob` option in bash, except
|
|
304
|
+
that it does not resolve escaped pattern characters.
|
|
305
|
+
|
|
306
|
+
If brace expansion is not disabled, then it is performed before any
|
|
307
|
+
other interpretation of the glob pattern. Thus, a pattern like
|
|
308
|
+
`+(a|{b),c)}`, which would not be valid in bash or zsh, is expanded
|
|
309
|
+
**first** into the set of `+(a|b)` and `+(a|c)`, and those patterns are
|
|
310
|
+
checked for validity. Since those two are valid, matching proceeds.
|
|
311
|
+
|
|
312
|
+
### Comments and Negation
|
|
313
|
+
|
|
314
|
+
Previously, this module let you mark a pattern as a "comment" if it
|
|
315
|
+
started with a `#` character, or a "negated" pattern if it started
|
|
316
|
+
with a `!` character.
|
|
317
|
+
|
|
318
|
+
These options were deprecated in version 5, and removed in version 6.
|
|
319
|
+
|
|
320
|
+
To specify things that should not match, use the `ignore` option.
|
|
321
|
+
|
|
322
|
+
## Windows
|
|
323
|
+
|
|
324
|
+
**Please only use forward-slashes in glob expressions.**
|
|
325
|
+
|
|
326
|
+
Though windows uses either `/` or `\` as its path separator, only `/`
|
|
327
|
+
characters are used by this glob implementation. You must use
|
|
328
|
+
forward-slashes **only** in glob expressions. Back-slashes will always
|
|
329
|
+
be interpreted as escape characters, not path separators.
|
|
330
|
+
|
|
331
|
+
Results from absolute patterns such as `/foo/*` are mounted onto the
|
|
332
|
+
root setting using `path.join`. On windows, this will by default result
|
|
333
|
+
in `/foo/*` matching `C:\foo\bar.txt`.
|
|
334
|
+
|
|
335
|
+
## Race Conditions
|
|
336
|
+
|
|
337
|
+
Glob searching, by its very nature, is susceptible to race conditions,
|
|
338
|
+
since it relies on directory walking and such.
|
|
339
|
+
|
|
340
|
+
As a result, it is possible that a file that exists when glob looks for
|
|
341
|
+
it may have been deleted or modified by the time it returns the result.
|
|
342
|
+
|
|
343
|
+
As part of its internal implementation, this program caches all stat
|
|
344
|
+
and readdir calls that it makes, in order to cut down on system
|
|
345
|
+
overhead. However, this also makes it even more susceptible to races,
|
|
346
|
+
especially if the cache or statCache objects are reused between glob
|
|
347
|
+
calls.
|
|
348
|
+
|
|
349
|
+
Users are thus advised not to use a glob result as a guarantee of
|
|
350
|
+
filesystem state in the face of rapid changes. For the vast majority
|
|
351
|
+
of operations, this is never a problem.
|
|
352
|
+
|
|
353
|
+
## Glob Logo
|
|
354
|
+
Glob's logo was created by [Tanya Brassie](http://tanyabrassie.com/). Logo files can be found [here](https://github.com/isaacs/node-glob/tree/master/logo).
|
|
355
|
+
|
|
356
|
+
The logo is licensed under a [Creative Commons Attribution-ShareAlike 4.0 International License](https://creativecommons.org/licenses/by-sa/4.0/).
|
|
357
|
+
|
|
358
|
+
## Contributing
|
|
359
|
+
|
|
360
|
+
Any change to behavior (including bugfixes) must come with a test.
|
|
361
|
+
|
|
362
|
+
Patches that fail tests or reduce performance will be rejected.
|
|
363
|
+
|
|
364
|
+
```
|
|
365
|
+
# to run tests
|
|
366
|
+
npm test
|
|
367
|
+
|
|
368
|
+
# to re-generate test fixtures
|
|
369
|
+
npm run test-regen
|
|
370
|
+
|
|
371
|
+
# to benchmark against bash/zsh
|
|
372
|
+
npm run bench
|
|
373
|
+
|
|
374
|
+
# to profile javascript
|
|
375
|
+
npm run prof
|
|
376
|
+
```
|
|
377
|
+
|
|
378
|
+

|
package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/glob/common.js
ADDED
|
@@ -0,0 +1,240 @@
|
|
|
1
|
+
exports.setopts = setopts
|
|
2
|
+
exports.ownProp = ownProp
|
|
3
|
+
exports.makeAbs = makeAbs
|
|
4
|
+
exports.finish = finish
|
|
5
|
+
exports.mark = mark
|
|
6
|
+
exports.isIgnored = isIgnored
|
|
7
|
+
exports.childrenIgnored = childrenIgnored
|
|
8
|
+
|
|
9
|
+
function ownProp (obj, field) {
|
|
10
|
+
return Object.prototype.hasOwnProperty.call(obj, field)
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
var fs = require("fs")
|
|
14
|
+
var path = require("path")
|
|
15
|
+
var minimatch = require("minimatch")
|
|
16
|
+
var isAbsolute = require("path").isAbsolute
|
|
17
|
+
var Minimatch = minimatch.Minimatch
|
|
18
|
+
|
|
19
|
+
function alphasort (a, b) {
|
|
20
|
+
return a.localeCompare(b, 'en')
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
function setupIgnores (self, options) {
|
|
24
|
+
self.ignore = options.ignore || []
|
|
25
|
+
|
|
26
|
+
if (!Array.isArray(self.ignore))
|
|
27
|
+
self.ignore = [self.ignore]
|
|
28
|
+
|
|
29
|
+
if (self.ignore.length) {
|
|
30
|
+
self.ignore = self.ignore.map(ignoreMap)
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
// ignore patterns are always in dot:true mode.
|
|
35
|
+
function ignoreMap (pattern) {
|
|
36
|
+
var gmatcher = null
|
|
37
|
+
if (pattern.slice(-3) === '/**') {
|
|
38
|
+
var gpattern = pattern.replace(/(\/\*\*)+$/, '')
|
|
39
|
+
gmatcher = new Minimatch(gpattern, { dot: true })
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
return {
|
|
43
|
+
matcher: new Minimatch(pattern, { dot: true }),
|
|
44
|
+
gmatcher: gmatcher
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
function setopts (self, pattern, options) {
|
|
49
|
+
if (!options)
|
|
50
|
+
options = {}
|
|
51
|
+
|
|
52
|
+
// base-matching: just use globstar for that.
|
|
53
|
+
if (options.matchBase && -1 === pattern.indexOf("/")) {
|
|
54
|
+
if (options.noglobstar) {
|
|
55
|
+
throw new Error("base matching requires globstar")
|
|
56
|
+
}
|
|
57
|
+
pattern = "**/" + pattern
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
self.silent = !!options.silent
|
|
61
|
+
self.pattern = pattern
|
|
62
|
+
self.strict = options.strict !== false
|
|
63
|
+
self.realpath = !!options.realpath
|
|
64
|
+
self.realpathCache = options.realpathCache || Object.create(null)
|
|
65
|
+
self.follow = !!options.follow
|
|
66
|
+
self.dot = !!options.dot
|
|
67
|
+
self.mark = !!options.mark
|
|
68
|
+
self.nodir = !!options.nodir
|
|
69
|
+
if (self.nodir)
|
|
70
|
+
self.mark = true
|
|
71
|
+
self.sync = !!options.sync
|
|
72
|
+
self.nounique = !!options.nounique
|
|
73
|
+
self.nonull = !!options.nonull
|
|
74
|
+
self.nosort = !!options.nosort
|
|
75
|
+
self.nocase = !!options.nocase
|
|
76
|
+
self.stat = !!options.stat
|
|
77
|
+
self.noprocess = !!options.noprocess
|
|
78
|
+
self.absolute = !!options.absolute
|
|
79
|
+
self.fs = options.fs || fs
|
|
80
|
+
|
|
81
|
+
self.maxLength = options.maxLength || Infinity
|
|
82
|
+
self.cache = options.cache || Object.create(null)
|
|
83
|
+
self.statCache = options.statCache || Object.create(null)
|
|
84
|
+
self.symlinks = options.symlinks || Object.create(null)
|
|
85
|
+
|
|
86
|
+
setupIgnores(self, options)
|
|
87
|
+
|
|
88
|
+
self.changedCwd = false
|
|
89
|
+
var cwd = process.cwd()
|
|
90
|
+
if (!ownProp(options, "cwd"))
|
|
91
|
+
self.cwd = path.resolve(cwd)
|
|
92
|
+
else {
|
|
93
|
+
self.cwd = path.resolve(options.cwd)
|
|
94
|
+
self.changedCwd = self.cwd !== cwd
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
self.root = options.root || path.resolve(self.cwd, "/")
|
|
98
|
+
self.root = path.resolve(self.root)
|
|
99
|
+
|
|
100
|
+
// TODO: is an absolute `cwd` supposed to be resolved against `root`?
|
|
101
|
+
// e.g. { cwd: '/test', root: __dirname } === path.join(__dirname, '/test')
|
|
102
|
+
self.cwdAbs = isAbsolute(self.cwd) ? self.cwd : makeAbs(self, self.cwd)
|
|
103
|
+
self.nomount = !!options.nomount
|
|
104
|
+
|
|
105
|
+
if (process.platform === "win32") {
|
|
106
|
+
self.root = self.root.replace(/\\/g, "/")
|
|
107
|
+
self.cwd = self.cwd.replace(/\\/g, "/")
|
|
108
|
+
self.cwdAbs = self.cwdAbs.replace(/\\/g, "/")
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
// disable comments and negation in Minimatch.
|
|
112
|
+
// Note that they are not supported in Glob itself anyway.
|
|
113
|
+
options.nonegate = true
|
|
114
|
+
options.nocomment = true
|
|
115
|
+
// always treat \ in patterns as escapes, not path separators
|
|
116
|
+
options.allowWindowsEscape = true
|
|
117
|
+
|
|
118
|
+
self.minimatch = new Minimatch(pattern, options)
|
|
119
|
+
self.options = self.minimatch.options
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
function finish (self) {
|
|
123
|
+
var nou = self.nounique
|
|
124
|
+
var all = nou ? [] : Object.create(null)
|
|
125
|
+
|
|
126
|
+
for (var i = 0, l = self.matches.length; i < l; i ++) {
|
|
127
|
+
var matches = self.matches[i]
|
|
128
|
+
if (!matches || Object.keys(matches).length === 0) {
|
|
129
|
+
if (self.nonull) {
|
|
130
|
+
// do like the shell, and spit out the literal glob
|
|
131
|
+
var literal = self.minimatch.globSet[i]
|
|
132
|
+
if (nou)
|
|
133
|
+
all.push(literal)
|
|
134
|
+
else
|
|
135
|
+
all[literal] = true
|
|
136
|
+
}
|
|
137
|
+
} else {
|
|
138
|
+
// had matches
|
|
139
|
+
var m = Object.keys(matches)
|
|
140
|
+
if (nou)
|
|
141
|
+
all.push.apply(all, m)
|
|
142
|
+
else
|
|
143
|
+
m.forEach(function (m) {
|
|
144
|
+
all[m] = true
|
|
145
|
+
})
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
if (!nou)
|
|
150
|
+
all = Object.keys(all)
|
|
151
|
+
|
|
152
|
+
if (!self.nosort)
|
|
153
|
+
all = all.sort(alphasort)
|
|
154
|
+
|
|
155
|
+
// at *some* point we statted all of these
|
|
156
|
+
if (self.mark) {
|
|
157
|
+
for (var i = 0; i < all.length; i++) {
|
|
158
|
+
all[i] = self._mark(all[i])
|
|
159
|
+
}
|
|
160
|
+
if (self.nodir) {
|
|
161
|
+
all = all.filter(function (e) {
|
|
162
|
+
var notDir = !(/\/$/.test(e))
|
|
163
|
+
var c = self.cache[e] || self.cache[makeAbs(self, e)]
|
|
164
|
+
if (notDir && c)
|
|
165
|
+
notDir = c !== 'DIR' && !Array.isArray(c)
|
|
166
|
+
return notDir
|
|
167
|
+
})
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
if (self.ignore.length)
|
|
172
|
+
all = all.filter(function(m) {
|
|
173
|
+
return !isIgnored(self, m)
|
|
174
|
+
})
|
|
175
|
+
|
|
176
|
+
self.found = all
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
function mark (self, p) {
|
|
180
|
+
var abs = makeAbs(self, p)
|
|
181
|
+
var c = self.cache[abs]
|
|
182
|
+
var m = p
|
|
183
|
+
if (c) {
|
|
184
|
+
var isDir = c === 'DIR' || Array.isArray(c)
|
|
185
|
+
var slash = p.slice(-1) === '/'
|
|
186
|
+
|
|
187
|
+
if (isDir && !slash)
|
|
188
|
+
m += '/'
|
|
189
|
+
else if (!isDir && slash)
|
|
190
|
+
m = m.slice(0, -1)
|
|
191
|
+
|
|
192
|
+
if (m !== p) {
|
|
193
|
+
var mabs = makeAbs(self, m)
|
|
194
|
+
self.statCache[mabs] = self.statCache[abs]
|
|
195
|
+
self.cache[mabs] = self.cache[abs]
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
return m
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
// lotta situps...
|
|
203
|
+
function makeAbs (self, f) {
|
|
204
|
+
var abs = f
|
|
205
|
+
if (f.charAt(0) === '/') {
|
|
206
|
+
abs = path.join(self.root, f)
|
|
207
|
+
} else if (isAbsolute(f) || f === '') {
|
|
208
|
+
abs = f
|
|
209
|
+
} else if (self.changedCwd) {
|
|
210
|
+
abs = path.resolve(self.cwd, f)
|
|
211
|
+
} else {
|
|
212
|
+
abs = path.resolve(f)
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
if (process.platform === 'win32')
|
|
216
|
+
abs = abs.replace(/\\/g, '/')
|
|
217
|
+
|
|
218
|
+
return abs
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
|
|
222
|
+
// Return true, if pattern ends with globstar '**', for the accompanying parent directory.
|
|
223
|
+
// Ex:- If node_modules/** is the pattern, add 'node_modules' to ignore list along with it's contents
|
|
224
|
+
function isIgnored (self, path) {
|
|
225
|
+
if (!self.ignore.length)
|
|
226
|
+
return false
|
|
227
|
+
|
|
228
|
+
return self.ignore.some(function(item) {
|
|
229
|
+
return item.matcher.match(path) || !!(item.gmatcher && item.gmatcher.match(path))
|
|
230
|
+
})
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
function childrenIgnored (self, path) {
|
|
234
|
+
if (!self.ignore.length)
|
|
235
|
+
return false
|
|
236
|
+
|
|
237
|
+
return self.ignore.some(function(item) {
|
|
238
|
+
return !!(item.gmatcher && item.gmatcher.match(path))
|
|
239
|
+
})
|
|
240
|
+
}
|