kn-cli 1.0.14 → 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 +4 -1
- package/src/build.js +54 -5
- 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
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_from": "minimatch@^5.0.1",
|
|
3
|
+
"_id": "minimatch@5.1.0",
|
|
4
|
+
"_inBundle": false,
|
|
5
|
+
"_integrity": "sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg==",
|
|
6
|
+
"_location": "/svgicons2svgfont/minimatch",
|
|
7
|
+
"_phantomChildren": {},
|
|
8
|
+
"_requested": {
|
|
9
|
+
"type": "range",
|
|
10
|
+
"registry": true,
|
|
11
|
+
"raw": "minimatch@^5.0.1",
|
|
12
|
+
"name": "minimatch",
|
|
13
|
+
"escapedName": "minimatch",
|
|
14
|
+
"rawSpec": "^5.0.1",
|
|
15
|
+
"saveSpec": null,
|
|
16
|
+
"fetchSpec": "^5.0.1"
|
|
17
|
+
},
|
|
18
|
+
"_requiredBy": [
|
|
19
|
+
"/svgicons2svgfont/glob"
|
|
20
|
+
],
|
|
21
|
+
"_resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.0.tgz",
|
|
22
|
+
"_shasum": "1717b464f4971b144f6aabe8f2d0b8e4511e09c7",
|
|
23
|
+
"_spec": "minimatch@^5.0.1",
|
|
24
|
+
"_where": "/Users/tsuneasahi/Documents/kingnet/open-platform/tools/iconfont/node_modules/svgicons2svgfont/node_modules/glob",
|
|
25
|
+
"author": {
|
|
26
|
+
"name": "Isaac Z. Schlueter",
|
|
27
|
+
"email": "i@izs.me",
|
|
28
|
+
"url": "http://blog.izs.me"
|
|
29
|
+
},
|
|
30
|
+
"bugs": {
|
|
31
|
+
"url": "https://github.com/isaacs/minimatch/issues"
|
|
32
|
+
},
|
|
33
|
+
"bundleDependencies": false,
|
|
34
|
+
"dependencies": {
|
|
35
|
+
"brace-expansion": "^2.0.1"
|
|
36
|
+
},
|
|
37
|
+
"deprecated": false,
|
|
38
|
+
"description": "a glob matcher in javascript",
|
|
39
|
+
"devDependencies": {
|
|
40
|
+
"tap": "^15.1.6"
|
|
41
|
+
},
|
|
42
|
+
"engines": {
|
|
43
|
+
"node": ">=10"
|
|
44
|
+
},
|
|
45
|
+
"files": [
|
|
46
|
+
"minimatch.js",
|
|
47
|
+
"lib"
|
|
48
|
+
],
|
|
49
|
+
"homepage": "https://github.com/isaacs/minimatch#readme",
|
|
50
|
+
"license": "ISC",
|
|
51
|
+
"main": "minimatch.js",
|
|
52
|
+
"name": "minimatch",
|
|
53
|
+
"repository": {
|
|
54
|
+
"type": "git",
|
|
55
|
+
"url": "git://github.com/isaacs/minimatch.git"
|
|
56
|
+
},
|
|
57
|
+
"scripts": {
|
|
58
|
+
"postversion": "npm publish",
|
|
59
|
+
"prepublishOnly": "git push origin --follow-tags",
|
|
60
|
+
"preversion": "npm test",
|
|
61
|
+
"snap": "tap",
|
|
62
|
+
"test": "tap"
|
|
63
|
+
},
|
|
64
|
+
"version": "5.1.0"
|
|
65
|
+
}
|
|
@@ -0,0 +1,248 @@
|
|
|
1
|
+
## [6.0.3](https://github.com/nfroidure/svg-pathdata/compare/v6.0.2...v6.0.3) (2021-09-18)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
# [6.0.2](https://github.com/nfroidure/svg-pathdata/compare/v6.0.1...v6.0.2) (2021-09-17)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
# [6.0.1](https://github.com/nfroidure/svg-pathdata/compare/v6.0.0...v6.0.1) (2021-09-12)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
# [6.0.0](https://github.com/nfroidure/svg-pathdata/compare/v5.0.5...v6.0.0) (2021-04-02)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [5.0.5](https://github.com/nfroidure/svg-pathdata/compare/v5.0.4...v5.0.5) (2020-06-06)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
## [5.0.4](https://github.com/nfroidure/svg-pathdata/compare/v4.0.0...v5.0.4) (2020-02-14)
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### Bug Fixes
|
|
22
|
+
|
|
23
|
+
* **parser:** fix parsing merged numbers with arc flags ([d55d9f0](https://github.com/nfroidure/svg-pathdata/commit/d55d9f0db00c1bb341eecaea786ca05dd2c51e95))
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
## [5.0.3](https://github.com/nfroidure/svg-pathdata/compare/v4.0.0...v5.0.3) (2020-02-04)
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
<a name="5.0.2"></a>
|
|
32
|
+
## [5.0.2](https://github.com/nfroidure/svg-pathdata/compare/v5.0.1...v5.0.2) (2018-06-05)
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
<a name="5.0.1"></a>
|
|
37
|
+
## [5.0.1](https://github.com/nfroidure/svg-pathdata/compare/v5.0.0...v5.0.1) (2018-06-03)
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
<a name="5.0.0"></a>
|
|
42
|
+
# [5.0.0](https://github.com/nfroidure/svg-pathdata/compare/v4.0.0...v5.0.0) (2018-06-02)
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
<a name="4.0.1"></a>
|
|
47
|
+
## [4.0.1](https://github.com/nfroidure/svg-pathdata/compare/v4.0.0...v4.0.1) (2017-08-22)
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
<a name="4.0.0"></a>
|
|
52
|
+
# [4.0.0](https://github.com/nfroidure/svg-pathdata/compare/v3.2.3...v4.0.0) (2017-08-22)
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
<a name="3.2.3"></a>
|
|
57
|
+
## [3.2.3](https://github.com/nfroidure/svg-pathdata/compare/v3.2.2...v3.2.3) (2017-08-13)
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
<a name="3.2.2"></a>
|
|
62
|
+
## [3.2.2](https://github.com/nfroidure/svg-pathdata/compare/v3.2.1...v3.2.2) (2017-08-13)
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
<a name="3.2.1"></a>
|
|
67
|
+
## [3.2.1](https://github.com/nfroidure/svg-pathdata/compare/v3.2.0...v3.2.1) (2017-08-13)
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
<a name="3.2.0"></a>
|
|
72
|
+
# [3.2.0](https://github.com/nfroidure/svg-pathdata/compare/v3.1.1...v3.2.0) (2017-08-12)
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
<a name="3.1.1"></a>
|
|
77
|
+
## [3.1.1](https://github.com/nfroidure/svg-pathdata/compare/v3.1.0...v3.1.1) (2017-08-12)
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
<a name="3.1.0"></a>
|
|
82
|
+
# [3.1.0](https://github.com/nfroidure/SVGPathData/compare/v3.0.0...v3.1.0) (2017-05-19)
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
<a name="3.0.0"></a>
|
|
87
|
+
# [3.0.0](https://github.com/nfroidure/SVGPathData/compare/v2.0.3...v3.0.0) (2017-05-02)
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
<a name="2.0.3"></a>
|
|
92
|
+
## [2.0.3](https://github.com/nfroidure/SVGPathData/compare/v2.0.2...v2.0.3) (2017-04-21)
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
<a name="2.0.2"></a>
|
|
97
|
+
## [2.0.2](https://github.com/nfroidure/SVGPathData/compare/v2.0.1...v2.0.2) (2017-04-05)
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
### Bug Fixes
|
|
101
|
+
|
|
102
|
+
* **build:** Fix tests and regenerate the changelog ([fa281fa](https://github.com/nfroidure/SVGPathData/commit/fa281fa))
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
### build
|
|
106
|
+
|
|
107
|
+
* **metapak-nfroidure:** Add metapak-nfroidure ([6be898c](https://github.com/nfroidure/SVGPathData/commit/6be898c))
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
### Code Refactoring
|
|
111
|
+
|
|
112
|
+
* **dist:** No more build ([8ce46da](https://github.com/nfroidure/SVGPathData/commit/8ce46da))
|
|
113
|
+
|
|
114
|
+
|
|
115
|
+
### BREAKING CHANGES
|
|
116
|
+
|
|
117
|
+
* **dist:** No more dist, please transpile in your own builds.
|
|
118
|
+
* **metapak-nfroidure:** Since the eslint --fix option were used, there may be some breaking features but
|
|
119
|
+
this very old codebase really need a total cleanup.
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
|
|
123
|
+
### v2.0.0 (2017/02/22 08:23 +00:00)
|
|
124
|
+
- [8a33721](https://github.com/nfroidure/SVGPathData/commit/8a33721a08ee1cf837ebf41699c6ab93648ad998) 2.0.0 (@NaridaL)
|
|
125
|
+
- [8c840ab](https://github.com/nfroidure/SVGPathData/commit/8c840ab66ee30139921a9d7d75c3f042d422e97a) Changed x1/y1 and x2/y2 around for C and c commands. (@NaridaL)
|
|
126
|
+
- [#20](https://github.com/nfroidure/SVGPathData/pull/20) Normalization and Sanitation Transformers (@NaridaL)
|
|
127
|
+
- [214f5ee](https://github.com/nfroidure/SVGPathData/commit/214f5ee4718792c17ef703ab4c34e3c0a2b6dfe0) Added transformers: (@NaridaL)
|
|
128
|
+
|
|
129
|
+
### v1.0.4 (2016/11/07 15:18 +00:00)
|
|
130
|
+
- [bb3beb7](https://github.com/nfroidure/SVGPathData/commit/bb3beb7fe18cf933254dd02ca22677bc95e4c993) 1.0.4 (@huerlisi)
|
|
131
|
+
- [#13](https://github.com/nfroidure/SVGPathData/pull/13) Ignore the coverage/ directory in git (@nfroidure)
|
|
132
|
+
- [#14](https://github.com/nfroidure/SVGPathData/pull/14) Use master branch travis badge in README (@nfroidure)
|
|
133
|
+
- [56cbd18](https://github.com/nfroidure/SVGPathData/commit/56cbd186d27a21fce3c21fddc3399e26e985e99a) Use master branch travis badge in README (@huerlisi)
|
|
134
|
+
- [5293f0b](https://github.com/nfroidure/SVGPathData/commit/5293f0bce88e4a2a18bc4e3679f4b3f53d9c86b6) Ignore the coverage/ directory in git (@huerlisi)
|
|
135
|
+
- [#9](https://github.com/nfroidure/SVGPathData/pull/9) Support transforming arc commands (@rhendric)
|
|
136
|
+
- [#11](https://github.com/nfroidure/SVGPathData/pull/11) Moveto commands start a new subpath (@rhendric)
|
|
137
|
+
- [#10](https://github.com/nfroidure/SVGPathData/pull/10) Remove Grunt references from Travis (@rhendric)
|
|
138
|
+
- [9906542](https://github.com/nfroidure/SVGPathData/commit/9906542f722e830e19ca401ccec1d33e6a8474ce) Support transforming arc commands (@rhendric)
|
|
139
|
+
- [25d1dc9](https://github.com/nfroidure/SVGPathData/commit/25d1dc90d2a66573e04b339d9139838625380b84) Fix test expectations (@rhendric)
|
|
140
|
+
- [c9e3747](https://github.com/nfroidure/SVGPathData/commit/c9e3747afdfd269a320e3ff9d474e83a56a2cecb) Remove Grunt references from Travis (@rhendric)
|
|
141
|
+
- [efc5f29](https://github.com/nfroidure/SVGPathData/commit/efc5f298340adb19374b967e11b40e09a892358f) Moveto commands start a new subpath (@rhendric)
|
|
142
|
+
|
|
143
|
+
### v1.0.3 (2015/11/20 20:08 +00:00)
|
|
144
|
+
- [d52943d](https://github.com/nfroidure/SVGPathData/commit/d52943d3aa4ef339f8e29fb321e5a23fb415c8c0) 1.0.3 (@nfroidure)
|
|
145
|
+
- [06fbcd1](https://github.com/nfroidure/SVGPathData/commit/06fbcd18a10ac0e4ed43fa2acb87e79ab0963355) Cannot use preversion lint right now, too much work (@nfroidure)
|
|
146
|
+
- [7d3d11e](https://github.com/nfroidure/SVGPathData/commit/7d3d11e4d9be6214d5e5a1da94761cb983ab9f80) Suppressing some linting errors (@nfroidure)
|
|
147
|
+
- [7337440](https://github.com/nfroidure/SVGPathData/commit/7337440e21037d83d66cfb051f60c2e7013c5c22) Updating deps (@nfroidure)
|
|
148
|
+
- [17a3934](https://github.com/nfroidure/SVGPathData/commit/17a39346a14b3aae7fca4240d818f16e5712bacb) Removing grunt (@nfroidure)
|
|
149
|
+
- [06d6a69](https://github.com/nfroidure/SVGPathData/commit/06d6a69abb42cdf01aff1ec40af50490c7e5c9c4) Adding eslint config file (@nfroidure)
|
|
150
|
+
|
|
151
|
+
### v1.0.2 (2015/10/10 10:57 +00:00)
|
|
152
|
+
- [3aa2cd6](https://github.com/nfroidure/SVGPathData/commit/3aa2cd603e9ef078b2394a5463dfcc6267fa1a21) 1.0.2 (@nfroidure)
|
|
153
|
+
- [179416d](https://github.com/nfroidure/SVGPathData/commit/179416d7ed7cbb7a5e4417a89b9528e865e31932) Fixing the arc reverted issue #44 (@nfroidure)
|
|
154
|
+
|
|
155
|
+
### v1.0.1 (2015/06/27 08:41 +00:00)
|
|
156
|
+
- [a8f1fb6](https://github.com/nfroidure/SVGPathData/commit/a8f1fb63ea3d1ace5038ec278911c50d807913cc) 1.0.1 (@nfroidure)
|
|
157
|
+
- [027ba05](https://github.com/nfroidure/SVGPathData/commit/027ba0540c2ee368df9b4adeb8e0c70a578264da) Suppressing hints (@nfroidure)
|
|
158
|
+
- [183ccd8](https://github.com/nfroidure/SVGPathData/commit/183ccd8b4dec15fa70a6bbcc8ed47d855689c83e) Cleaning up repo (@nfroidure)
|
|
159
|
+
- [7418a31](https://github.com/nfroidure/SVGPathData/commit/7418a3174c8b49e26e06229d7a0a06d0233afd81) Update deps, set the engines to Node > 0.10 (@nfroidure)
|
|
160
|
+
|
|
161
|
+
### v1.0.0 (2014/11/16 16:05 +00:00)
|
|
162
|
+
- [d043a52](https://github.com/nfroidure/SVGPathData/commit/d043a522d1e759a19e2b9a241772839f403a8f46) 1.0.0 (@nfroidure)
|
|
163
|
+
- [da9671b](https://github.com/nfroidure/SVGPathData/commit/da9671b5eed778a07b094e8a92d589e32b684943) Fixing rel 2 abs for multipath pathdatas (@nfroidure)
|
|
164
|
+
- [68d0e70](https://github.com/nfroidure/SVGPathData/commit/68d0e70a749de73c7d6d0279219b487b9f0e7d64) Adding the forgotten licence file closes #7 (@nfroidure)
|
|
165
|
+
- [2b7bd20](https://github.com/nfroidure/SVGPathData/commit/2b7bd200a3be95afb5cd9c534b08846f4edd7339) Updating version number (@nfroidure)
|
|
166
|
+
- [2b1e277](https://github.com/nfroidure/SVGPathData/commit/2b1e277a6e36f8fc6e5880d323b8534aa46dab56) Removing unecessary dependency (@nfroidure)
|
|
167
|
+
- [cf3f3e4](https://github.com/nfroidure/SVGPathData/commit/cf3f3e4ee2a0a9495eb7f1958a03d8037d488926) Do not use data event anymore (@nfroidure)
|
|
168
|
+
- [5cb5c80](https://github.com/nfroidure/SVGPathData/commit/5cb5c805a333d314641f2dbaa449385054e444f0) Improved transform functions (@nfroidure)
|
|
169
|
+
- [1f567e1](https://github.com/nfroidure/SVGPathData/commit/1f567e11c2d5e086dfa1689e6772eae2eeeef0d8) Improved transform function (@nfroidure)
|
|
170
|
+
- [4724965](https://github.com/nfroidure/SVGPathData/commit/47249651346f98e7ee30cab32579f6ac8edf3c2c) New version (@nfroidure)
|
|
171
|
+
- [2d726ec](https://github.com/nfroidure/SVGPathData/commit/2d726ecb8e2dcd3ac3d6006e53a84f82e8e03dff) Fucking grunt-browserify (@nfroidure)
|
|
172
|
+
- [3587d82](https://github.com/nfroidure/SVGPathData/commit/3587d82648965988f32053901c1669ac584c4621) Adding forgottent tests (@nfroidure)
|
|
173
|
+
- [5a29acb](https://github.com/nfroidure/SVGPathData/commit/5a29acb45605db5d715acedd4238a1e046bd3372) Removing errors that cannot happen (@nfroidure)
|
|
174
|
+
- [3425078](https://github.com/nfroidure/SVGPathData/commit/342507854c0ad5e1894108b7cf4a742e2c289e3e) Adding forgotten new operator for errors (@nfroidure)
|
|
175
|
+
- [54b7538](https://github.com/nfroidure/SVGPathData/commit/54b75386eecc0c518fb2f1dfb190bf91bfcb3ad3) No more EOF and STATE_ENDED for the parser (@nfroidure)
|
|
176
|
+
- [f2609e3](https://github.com/nfroidure/SVGPathData/commit/f2609e3dc78d801e1e112644b211e41ca246cbf7) Fixing encoder output to buffer modewq (@nfroidure)
|
|
177
|
+
- [2c03487](https://github.com/nfroidure/SVGPathData/commit/2c0348746bbacb4da7d2e97cd0e2d18fc5df5fd7) Improving code coverage, allowing constructors omission (@nfroidure)
|
|
178
|
+
- [237898e](https://github.com/nfroidure/SVGPathData/commit/237898e4cd1e9a762f836a265295a658c4a8f5f6) Updating dependencies (@nfroidure)
|
|
179
|
+
- [d35369c](https://github.com/nfroidure/SVGPathData/commit/d35369c12e93b6c20cbd9846f0eab15652ca034e) Fix matrix transformation formula closes #2 (@nfroidure)
|
|
180
|
+
- [e218385](https://github.com/nfroidure/SVGPathData/commit/e218385b4e2bb238231a5a86a05d0e604d125123) Fixing tests, improving A to C transformer (@nfroidure)
|
|
181
|
+
- [49fe80a](https://github.com/nfroidure/SVGPathData/commit/49fe80af60a4dedc68341466f86aa93d67d19882) New version 0.0.4 (@nfroidure)
|
|
182
|
+
- [a0e8a63](https://github.com/nfroidure/SVGPathData/commit/a0e8a63f160cc5dad0b4eb702dfb712785467f66) Added stats (@nfroidure)
|
|
183
|
+
- [#3](https://github.com/nfroidure/SVGPathData/pull/3) Depend on readable-stream from npm (@Raynos)
|
|
184
|
+
- [#4](https://github.com/nfroidure/SVGPathData/pull/4) clean up the scripts (@calvinmetcalf)
|
|
185
|
+
- [0c2cfde](https://github.com/nfroidure/SVGPathData/commit/0c2cfde170ca5f7621a4f6bc246f319aa5ae02d5) change | to && (@calvinmetcalf)
|
|
186
|
+
- [071215f](https://github.com/nfroidure/SVGPathData/commit/071215ff3d78db451e4aa2e39b8c9cee28b5668c) clean up the scripts (@calvinmetcalf)
|
|
187
|
+
- [19a4daa](https://github.com/nfroidure/SVGPathData/commit/19a4daaee107a25f9c422dc05c317c12808c94ca) convert other files to readable-stream too (@Raynos)
|
|
188
|
+
- [50dd97a](https://github.com/nfroidure/SVGPathData/commit/50dd97ab76f37c36ccf6519c2cd0ffd841ca0f98) depend on readable-stream in p.json (@Raynos)
|
|
189
|
+
- [181f63b](https://github.com/nfroidure/SVGPathData/commit/181f63b7eb1e79f80a258626da913123af5f73c3) Use readable-stream instead (@Raynos)
|
|
190
|
+
- [ce11d07](https://github.com/nfroidure/SVGPathData/commit/ce11d07e8d04ef446d4e49f83c582a88a1f49c68) Readme fix (@nfroidure)
|
|
191
|
+
- [c521987](https://github.com/nfroidure/SVGPathData/commit/c5219871629b8fafb8cea85a0ed158080af8acb0) Added coverage tests (@nfroidure)
|
|
192
|
+
- [11d22fc](https://github.com/nfroidure/SVGPathData/commit/11d22fc3360cd44e166e4a46935f94196ba19dce) Added a round transformation (@nfroidure)
|
|
193
|
+
- [0bf6fa4](https://github.com/nfroidure/SVGPathData/commit/0bf6fa4a20deba65e61b63d33a3e56ab7fdef675) Do not parse incomplete L,M,S incomplete commands anymore (@nfroidure)
|
|
194
|
+
- [653a4d3](https://github.com/nfroidure/SVGPathData/commit/653a4d3b214e13682aa0ecba80b71aaf069e540a) Improved sapegin test (@nfroidure)
|
|
195
|
+
- [60ee34e](https://github.com/nfroidure/SVGPathData/commit/60ee34ef8da8a798f2dfd7642555dcb71b83186e) Added sapegin test (@nfroidure)
|
|
196
|
+
- [908da2a](https://github.com/nfroidure/SVGPathData/commit/908da2a4ce2cf69990d73a267e7e124ca955008c) Added arc to curve conversionwq (@nfroidure)
|
|
197
|
+
- [b341fde](https://github.com/nfroidure/SVGPathData/commit/b341fdef1503ff0eb414a5b1bbcd9eb40cd75dbd) Main file is the src not the build (@nfroidure)
|
|
198
|
+
- [0d8608e](https://github.com/nfroidure/SVGPathData/commit/0d8608e9ead3fff8b22e37581098bdda7eb6dc99) Version updated (@nfroidure)
|
|
199
|
+
- [28a1cd1](https://github.com/nfroidure/SVGPathData/commit/28a1cd11205e8876d8a17112fcb5bd261a337685) Tests updated (@nfroidure)
|
|
200
|
+
- [63ac182](https://github.com/nfroidure/SVGPathData/commit/63ac182d17c8f99cf8cba8c978bfc05102832d1c) Fix for X/Y transforms (@nfroidure)
|
|
201
|
+
- [b4196ce](https://github.com/nfroidure/SVGPathData/commit/b4196ce375c43e1dd66659abf3b25e1c2f6e6d8e) Removed unnecessary absolute conversions (@nfroidure)
|
|
202
|
+
- [4a38ad0](https://github.com/nfroidure/SVGPathData/commit/4a38ad09fe38c32a97a790e88605b0a28efc3c92) Added x symetry (@nfroidure)
|
|
203
|
+
- [e34a0e3](https://github.com/nfroidure/SVGPathData/commit/e34a0e34ae7ccc1572920dc43e3c58c993885513) Based y symetry on other transformations (@nfroidure)
|
|
204
|
+
- [392152d](https://github.com/nfroidure/SVGPathData/commit/392152dc8aafcb3709d5c83915437e0c56638f51) Checking transformations arguments (@nfroidure)
|
|
205
|
+
- [177f586](https://github.com/nfroidure/SVGPathData/commit/177f5867e376fd8bcc6c8da77c8829c3296e07ee) Updated REAMDE and package.json (@nfroidure)
|
|
206
|
+
- [60a2819](https://github.com/nfroidure/SVGPathData/commit/60a2819bc2ce39c039f34169b58791195d73df56) Some transformations converted to their idioins matrixes (@nfroidure)
|
|
207
|
+
- [a24a2a5](https://github.com/nfroidure/SVGPathData/commit/a24a2a55efd1a5b740133967786cddc5cc6c4823) Skew transformations added2 (@nfroidure)
|
|
208
|
+
- [930b9c4](https://github.com/nfroidure/SVGPathData/commit/930b9c4f9a823b57a22a1f2061d4cd7c35a83c9f) Skew transformations added (@nfroidure)
|
|
209
|
+
- [7bc0390](https://github.com/nfroidure/SVGPathData/commit/7bc03902ffd6723f53f263d5ae875d727803f961) Rotation transformation added (@nfroidure)
|
|
210
|
+
- [3191815](https://github.com/nfroidure/SVGPathData/commit/31918152a99e30b856cd2c527aecb437d076cb41) Added scale transformation (@nfroidure)
|
|
211
|
+
- [0e15916](https://github.com/nfroidure/SVGPathData/commit/0e1591638e0c0e9da0de9f4de59f3cb0e68ff4c4) Added translation transformation (@nfroidure)
|
|
212
|
+
- [6cfd826](https://github.com/nfroidure/SVGPathData/commit/6cfd826478cbe52b100a7632027046dfca59fd5b) Fix for y symetry problems (@nfroidure)
|
|
213
|
+
- [7d0576c](https://github.com/nfroidure/SVGPathData/commit/7d0576c6f83c61d449fac26b67d6b54ee3ea7655) Support decpoint separated numbers 2 (@nfroidure)
|
|
214
|
+
- [92391ec](https://github.com/nfroidure/SVGPathData/commit/92391eca9f73a2007c3f155977a19a7d7dd56e0e) Support sign separated numbers 2 (@nfroidure)
|
|
215
|
+
- [5b536c1](https://github.com/nfroidure/SVGPathData/commit/5b536c17b9e754d5d8dd569422bb4b30d7a41739) Support sign separated numbers (@nfroidure)
|
|
216
|
+
- [d37ea0a](https://github.com/nfroidure/SVGPathData/commit/d37ea0aee50de8fc311d652dd76c43094d1dcfd5) Added ySymetry transformer2 (@nfroidure)
|
|
217
|
+
- [647fdf4](https://github.com/nfroidure/SVGPathData/commit/647fdf4ce9f99411d2433247af5bbdde32ea2759) Added ySymetry transformer (@nfroidure)
|
|
218
|
+
- [377518f](https://github.com/nfroidure/SVGPathData/commit/377518fc292a08ec6b292262f46454f7d91071b5) Added toRel transformer2 (@nfroidure)
|
|
219
|
+
- [dd00037](https://github.com/nfroidure/SVGPathData/commit/dd0003784e04086890f76a1abadd4d4871a8695e) Added toAbs transformer2 (@nfroidure)
|
|
220
|
+
- [d0d8332](https://github.com/nfroidure/SVGPathData/commit/d0d833242c9121dfe0a1f171ebea9f7744631958) Added toAbs transformer (@nfroidure)
|
|
221
|
+
- [b1e24a6](https://github.com/nfroidure/SVGPathData/commit/b1e24a63c4b3646e5af996b12c80abd53b4614cc) Now based on Node stream module (@nfroidure)
|
|
222
|
+
- [1bfbeea](https://github.com/nfroidure/SVGPathData/commit/1bfbeea6b429762477473b958e90739cb782b6aa) Updated dependencies (@nfroidure)
|
|
223
|
+
- [a267550](https://github.com/nfroidure/SVGPathData/commit/a267550c013538d23b2ba292d0f9358d950f4b8c) Added the distribution file (@nfroidure)
|
|
224
|
+
- [b8f0c7e](https://github.com/nfroidure/SVGPathData/commit/b8f0c7ee00367aac72177b689455d049c3ff2915) Added encoding use samples (@nfroidure)
|
|
225
|
+
- [bbd8955](https://github.com/nfroidure/SVGPathData/commit/bbd8955eb82ff57f1dd57cdb0f3cdff4868070a4) Switch to line to n+1 move to declarated commands (@nfroidure)
|
|
226
|
+
- [667f390](https://github.com/nfroidure/SVGPathData/commit/667f390209048f63e4e2cca3ae714e5821cbe70c) Added an encoder (@nfroidure)
|
|
227
|
+
- [78ef5ce](https://github.com/nfroidure/SVGPathData/commit/78ef5ce99598a6fc0edf9f83306f86e4ff9d3571) Contributing (@nfroidure)
|
|
228
|
+
- [c6d4db4](https://github.com/nfroidure/SVGPathData/commit/c6d4db4cc5879fdefd7697d2bba44b60f337e6e3) Added usage in the README file (@nfroidure)
|
|
229
|
+
- [bd69b1c](https://github.com/nfroidure/SVGPathData/commit/bd69b1ce492492d4b1b60d5e1d632558427bc1bd) Const naming uniformized (@nfroidure)
|
|
230
|
+
- [3b21f06](https://github.com/nfroidure/SVGPathData/commit/3b21f06e40c91a1761b5c5a86b5fb36d0044f690) New Grunt/Package files (@nfroidure)
|
|
231
|
+
- [f84959e](https://github.com/nfroidure/SVGPathData/commit/f84959e2833af79024ed356a5cdabbc331a5e028) Small refactoring (@nfroidure)
|
|
232
|
+
- [726e85f](https://github.com/nfroidure/SVGPathData/commit/726e85f575550ef13ff85a74ba312ee48fb2ac78) Added eliptic arc commands error detection tests (@nfroidure)
|
|
233
|
+
- [7bb6671](https://github.com/nfroidure/SVGPathData/commit/7bb6671b59ad35f73fa81d61cbc75f5424a099c0) Added eliptic arc commands (@nfroidure)
|
|
234
|
+
- [7099de1](https://github.com/nfroidure/SVGPathData/commit/7099de12fda674ad43f9200d1f92d81110dfe43f) Added smooth quadratic curve to commands (@nfroidure)
|
|
235
|
+
- [97c7575](https://github.com/nfroidure/SVGPathData/commit/97c7575823eb6f0a4215ba8c0b2387724ce75d5f) Added quadratic curve to commands (@nfroidure)
|
|
236
|
+
- [0499dcb](https://github.com/nfroidure/SVGPathData/commit/0499dcbe01caf609fb55e888376b2fd6aab14f00) Added curve to commands2 (@nfroidure)
|
|
237
|
+
- [fdb154e](https://github.com/nfroidure/SVGPathData/commit/fdb154e6fd07eab2b49737c32e2c14e2c9bd603a) Added curve to commands (@nfroidure)
|
|
238
|
+
- [111c42c](https://github.com/nfroidure/SVGPathData/commit/111c42cd3f4c115dfa93c171acc7fcc8bf605ea0) Better syntax error handling (@nfroidure)
|
|
239
|
+
- [52727ae](https://github.com/nfroidure/SVGPathData/commit/52727ae6303a7ca4c3f2817d6e41051ea679698b) Added smooth curveto commands (@nfroidure)
|
|
240
|
+
- [4fae609](https://github.com/nfroidure/SVGPathData/commit/4fae609bb17b1f866af6b47074762c9613d271c7) Added line to and closepath commands parsing (@nfroidure)
|
|
241
|
+
- [d7cdfad](https://github.com/nfroidure/SVGPathData/commit/d7cdfadf1024eb4d7bd51f6d6d487a4577b5a524) Move to commands parsing added (@nfroidure)
|
|
242
|
+
- [d10264e](https://github.com/nfroidure/SVGPathData/commit/d10264eda8d10b5200cffdfe8d08a239b4679c42) parse mthod returns commands (@nfroidure)
|
|
243
|
+
- [280ffe0](https://github.com/nfroidure/SVGPathData/commit/280ffe072cebe7abc2ec3bab2fb563e76a326bca) Build info (@nfroidure)
|
|
244
|
+
- [ac6b856](https://github.com/nfroidure/SVGPathData/commit/ac6b856c9c0338042ec10f45b0da9ce151d42411) Added vertical/horizontal commands2 (@nfroidure)
|
|
245
|
+
- [f785f6b](https://github.com/nfroidure/SVGPathData/commit/f785f6bf1a558caf1e60bb4d561b37139a082f61) Added vertical/horizontal commands (@nfroidure)
|
|
246
|
+
- [2f9b8da](https://github.com/nfroidure/SVGPathData/commit/2f9b8da11568d0079c101277ea8ec103e2434df1) Full support for numbers parsing (@nfroidure)
|
|
247
|
+
- [699bf87](https://github.com/nfroidure/SVGPathData/commit/699bf87bb27ed93b5075155308b48a1a574b015a) Fixed tests (@nfroidure)
|
|
248
|
+
- [04450cc](https://github.com/nfroidure/SVGPathData/commit/04450cc0938a5d883338362ceb167ca59e9d1c7f) First Commit (@nfroidure)
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
Copyright © 2017 Nicolas Froidure
|
|
3
|
+
|
|
4
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
5
|
+
of this software and associated documentation files (the “Software”), to deal
|
|
6
|
+
in the Software without restriction, including without limitation the rights
|
|
7
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
8
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
9
|
+
furnished to do so, subject to the following conditions:
|
|
10
|
+
|
|
11
|
+
The above copyright notice and this permission notice shall be included in
|
|
12
|
+
all copies or substantial portions of the Software.
|
|
13
|
+
|
|
14
|
+
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
15
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
16
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
17
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
18
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
19
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
20
|
+
THE SOFTWARE.
|
|
@@ -0,0 +1,162 @@
|
|
|
1
|
+
# svg-pathdata
|
|
2
|
+
> Manipulate SVG path data (path[d] attribute content) simply and efficiently.
|
|
3
|
+
|
|
4
|
+
[](https://npmjs.org/package/svg-pathdata)
|
|
5
|
+
[](https://github.com/nfroidure/svg-pathdata/actions/workflows/test.yml)
|
|
6
|
+
[](https://david-dm.org/nfroidure/svg-pathdata)
|
|
7
|
+
[](https://david-dm.org/nfroidure/svg-pathdata#info=devDependencies)
|
|
8
|
+
[](https://coveralls.io/r/nfroidure/svg-pathdata?branch=master)
|
|
9
|
+
[](https://codeclimate.com/github/nfroidure/svg-pathdata)
|
|
10
|
+
[](https://dependencyci.com/github/nfroidure/svg-pathdata)
|
|
11
|
+
|
|
12
|
+
## Usage
|
|
13
|
+
|
|
14
|
+
Install the module:
|
|
15
|
+
```sh
|
|
16
|
+
npm install --save svg-pathdata
|
|
17
|
+
```
|
|
18
|
+
or add the [bundle](https://github.com/nfroidure/svg-pathdata/blob/master/lib/SVGPathData.js) to a script in your HTML.
|
|
19
|
+
|
|
20
|
+
Then in your JavaScript files:
|
|
21
|
+
```js
|
|
22
|
+
const {SVGPathData, SVGPathDataTransformer, SVGPathDataEncoder, SVGPathDataParser} = require('svg-pathdata');
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
With import syntax in TypeScript/ES6:
|
|
26
|
+
```ts
|
|
27
|
+
import {SVGPathData, SVGPathDataTransformer, SVGPathDataEncoder, SVGPathDataParser} from 'svg-pathdata';
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
Without modules, using the global in the bundle:
|
|
31
|
+
```js
|
|
32
|
+
const {SVGPathData, SVGPathDataTransformer, SVGPathDataEncoder, SVGPathDataParser} = svgpathdata;
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
## Reading PathData
|
|
37
|
+
```js
|
|
38
|
+
const pathData = new SVGPathData (`
|
|
39
|
+
M 10 10
|
|
40
|
+
H 60
|
|
41
|
+
V 60
|
|
42
|
+
L 10 60
|
|
43
|
+
Z`);
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
console.log(pathData.commands);
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
// [ {type: SVGPathData.MOVE_TO, relative: false, x: 10, y: 10},
|
|
50
|
+
// {type: SVGPathData.HORIZ_LINE_TO, relative: false, x: 60},
|
|
51
|
+
// {type: SVGPathData.VERT_LINE_TO, relative: false, y: 60},
|
|
52
|
+
// {type: SVGPathData.LINE_TO, relative: false, x: 10, y: 60},
|
|
53
|
+
// {type: SVGPathData.CLOSE_PATH}]
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
## Reading PathData in chunks
|
|
57
|
+
```js
|
|
58
|
+
const parser = new SVGPathDataParser();
|
|
59
|
+
|
|
60
|
+
parser.parse(' '); // returns []
|
|
61
|
+
parser.parse('M 10'); // returns []
|
|
62
|
+
parser.parse(' 10'); // returns [{type: SVGPathData.MOVE_TO, relative: false, x: 10, y: 10 }]
|
|
63
|
+
|
|
64
|
+
parser.write('H 60'); // returns [{type: SVGPathData.HORIZ_LINE_TO, relative: false, x: 60 }]
|
|
65
|
+
|
|
66
|
+
parser.write('V'); // returns []
|
|
67
|
+
parser.write('60'); // returns [{type: SVGPathData.VERT_LINE_TO, relative: false, y: 60 }]
|
|
68
|
+
|
|
69
|
+
parser.write('L 10 60 \n Z');
|
|
70
|
+
// returns [
|
|
71
|
+
// {type: SVGPathData.LINE_TO, relative: false, x: 10, y: 60 },
|
|
72
|
+
// {type: SVGPathData.CLOSE_PATH }]
|
|
73
|
+
|
|
74
|
+
parser.finish(); // tell parser there is no more data: will throw if there are unfinished commands.
|
|
75
|
+
```
|
|
76
|
+
|
|
77
|
+
## Outputting PathData
|
|
78
|
+
```js
|
|
79
|
+
const pathData = new SVGPathData (`
|
|
80
|
+
M 10 10
|
|
81
|
+
H 60
|
|
82
|
+
V 60
|
|
83
|
+
L 10 60
|
|
84
|
+
Z`);
|
|
85
|
+
// returns "M10 10H60V60L10 60Z"
|
|
86
|
+
|
|
87
|
+
encodeSVGPath({ type: SVGPathData.MOVE_TO, relative: false, x: 10, y: 10 });
|
|
88
|
+
// returns "M10 10"
|
|
89
|
+
|
|
90
|
+
encodeSVGPath({ type: SVGPathData.HORIZ_LINE_TO, relative: false, x: 60 });
|
|
91
|
+
// returns "H60"
|
|
92
|
+
|
|
93
|
+
encodeSVGPath([
|
|
94
|
+
{ type: SVGPathData.VERT_LINE_TO, relative: false, y: 60 },
|
|
95
|
+
{ type: SVGPathData.LINE_TO, relative: false, x: 10, y: 60 },
|
|
96
|
+
{ type: SVGPathData.CLOSE_PATH}])
|
|
97
|
+
// returns "V60L10 60Z"
|
|
98
|
+
|
|
99
|
+
```
|
|
100
|
+
|
|
101
|
+
## Transforming PathData
|
|
102
|
+
This library can perform transformations on SVG paths. Here is
|
|
103
|
+
[an example of that kind of use](https://github.com/nfroidure/svgicons2svgfont/blob/aa6df0211419e9d61c417c63bcc353f0cb2ea0c8/src/index.js#L192).
|
|
104
|
+
|
|
105
|
+
### Transforming entire paths
|
|
106
|
+
```js
|
|
107
|
+
new SVGPathData (`
|
|
108
|
+
m 10,10
|
|
109
|
+
h 60
|
|
110
|
+
v 60
|
|
111
|
+
l 10,60
|
|
112
|
+
z`)
|
|
113
|
+
.toAbs()
|
|
114
|
+
.encode();
|
|
115
|
+
// return s"M10,10 H70 V70 L80,130 Z"
|
|
116
|
+
```
|
|
117
|
+
|
|
118
|
+
### Transforming partial data
|
|
119
|
+
Here, we take SVGPathData from stdin and output it transformed to stdout.
|
|
120
|
+
```js
|
|
121
|
+
const transformingParser = new SVGPathDataParser().toAbs().scale(2, 2);
|
|
122
|
+
transformingParser.parse('m 0 0') // returns [{ type: SVGPathData.MOVE_TO, relative: false, x: 0, y: 0 }]
|
|
123
|
+
transformingParser.parse('l 2 3') // returns [{ type: SVGPathData.LINE_TO, relative: false, x: 4, y: 6 }]
|
|
124
|
+
```
|
|
125
|
+
|
|
126
|
+
## Supported transformations
|
|
127
|
+
You can find all supported transformations in
|
|
128
|
+
[src/SVGPathDataTransformer.ts](https://github.com/nfroidure/SVGPathData/blob/master/src/SVGPathDataTransformer.ts#L47).
|
|
129
|
+
Additionally, you can create your own by writing a function with the following signature:
|
|
130
|
+
```js
|
|
131
|
+
type TransformFunction = (command: SVGCommand) => SVGCommand | SVGCommand[];
|
|
132
|
+
|
|
133
|
+
function SET_X_TO(xValue = 10) {
|
|
134
|
+
return function(command) {
|
|
135
|
+
command.x = xValue; // transform command objects and return them
|
|
136
|
+
return command;
|
|
137
|
+
};
|
|
138
|
+
};
|
|
139
|
+
|
|
140
|
+
// Synchronous usage
|
|
141
|
+
new SVGPathData('...')
|
|
142
|
+
.transform(SET_X_TO(25))
|
|
143
|
+
.encode();
|
|
144
|
+
|
|
145
|
+
// Chunk usage
|
|
146
|
+
new SVGPathDataParser().transform(SET_X_TO(25));
|
|
147
|
+
```
|
|
148
|
+
|
|
149
|
+
|
|
150
|
+
## Stats
|
|
151
|
+
|
|
152
|
+
[](https://nodei.co/npm/svg-pathdata/)
|
|
153
|
+
[](https://nodei.co/npm/svg-pathdata/)
|
|
154
|
+
|
|
155
|
+
## Contributing
|
|
156
|
+
Clone this project, run:
|
|
157
|
+
```sh
|
|
158
|
+
npm install; npm test
|
|
159
|
+
```
|
|
160
|
+
|
|
161
|
+
# License
|
|
162
|
+
[MIT](https://github.com/nfroidure/svg-pathdata/blob/master/LICENSE)
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
// Karma configuration
|
|
2
|
+
// Generated on Tue Oct 15 2013 15:27:53 GMT+0200 (CEST)
|
|
3
|
+
|
|
4
|
+
module.exports = function(config) {
|
|
5
|
+
config.set({
|
|
6
|
+
|
|
7
|
+
// base path, that will be used to resolve files and exclude
|
|
8
|
+
basePath: '',
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
// frameworks to use
|
|
12
|
+
frameworks: ['mocha', 'chai'],
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
// list of files / patterns to load in the browser
|
|
16
|
+
files: [
|
|
17
|
+
'dist/SVGPathData.js',
|
|
18
|
+
'tests/**/*.mocha.js'
|
|
19
|
+
],
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
// list of files to exclude
|
|
23
|
+
exclude: [
|
|
24
|
+
|
|
25
|
+
],
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
// test results reporter to use
|
|
29
|
+
// possible values: 'dots', 'progress', 'junit', 'growl', 'coverage'
|
|
30
|
+
reporters: ['progress'],
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
// web server port
|
|
34
|
+
port: 9876,
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
// enable / disable colors in the output (reporters and logs)
|
|
38
|
+
colors: true,
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
// level of logging
|
|
42
|
+
// possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
|
|
43
|
+
logLevel: config.LOG_INFO,
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
// enable / disable watching file and executing tests whenever any file changes
|
|
47
|
+
autoWatch: true,
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
// Start these browsers, currently available:
|
|
51
|
+
// - Chrome
|
|
52
|
+
// - ChromeCanary
|
|
53
|
+
// - Firefox
|
|
54
|
+
// - Opera
|
|
55
|
+
// - Safari (only Mac)
|
|
56
|
+
// - PhantomJS
|
|
57
|
+
// - IE (only Windows)
|
|
58
|
+
browsers: ['Chrome', 'Firefox', 'PhantomJS'],
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
// If browser does not capture in given timeout [ms], kill it
|
|
62
|
+
captureTimeout: 60000,
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
// Continuous Integration mode
|
|
66
|
+
// if true, it capture browsers, run tests and exit
|
|
67
|
+
singleRun: false
|
|
68
|
+
});
|
|
69
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
!function(t,r){"object"==typeof exports&&"undefined"!=typeof module?r(exports):"function"==typeof define&&define.amd?define(["exports"],r):r((t="undefined"!=typeof globalThis?globalThis:t||self).svgpathdata={})}(this,(function(t){"use strict";
|
|
2
|
+
/*! *****************************************************************************
|
|
3
|
+
Copyright (c) Microsoft Corporation.
|
|
4
|
+
|
|
5
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
6
|
+
purpose with or without fee is hereby granted.
|
|
7
|
+
|
|
8
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
9
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
10
|
+
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
11
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
12
|
+
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
13
|
+
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
14
|
+
PERFORMANCE OF THIS SOFTWARE.
|
|
15
|
+
***************************************************************************** */var r=function(t,e){return(r=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,r){t.__proto__=r}||function(t,r){for(var e in r)Object.prototype.hasOwnProperty.call(r,e)&&(t[e]=r[e])})(t,e)};function e(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function a(){this.constructor=t}r(t,e),t.prototype=null===e?Object.create(e):(a.prototype=e.prototype,new a)}var a=" ";function i(t){var r="";Array.isArray(t)||(t=[t]);for(var e=0;e<t.length;e++){var i=t[e];if(i.type===N.CLOSE_PATH)r+="z";else if(i.type===N.HORIZ_LINE_TO)r+=(i.relative?"h":"H")+i.x;else if(i.type===N.VERT_LINE_TO)r+=(i.relative?"v":"V")+i.y;else if(i.type===N.MOVE_TO)r+=(i.relative?"m":"M")+i.x+a+i.y;else if(i.type===N.LINE_TO)r+=(i.relative?"l":"L")+i.x+a+i.y;else if(i.type===N.CURVE_TO)r+=(i.relative?"c":"C")+i.x1+a+i.y1+a+i.x2+a+i.y2+a+i.x+a+i.y;else if(i.type===N.SMOOTH_CURVE_TO)r+=(i.relative?"s":"S")+i.x2+a+i.y2+a+i.x+a+i.y;else if(i.type===N.QUAD_TO)r+=(i.relative?"q":"Q")+i.x1+a+i.y1+a+i.x+a+i.y;else if(i.type===N.SMOOTH_QUAD_TO)r+=(i.relative?"t":"T")+i.x+a+i.y;else{if(i.type!==N.ARC)throw new Error('Unexpected command type "'+i.type+'" at index '+e+".");r+=(i.relative?"a":"A")+i.rX+a+i.rY+a+i.xRot+a+ +i.lArcFlag+a+ +i.sweepFlag+a+i.x+a+i.y}}return r}function n(t,r){var e=t[0],a=t[1];return[e*Math.cos(r)-a*Math.sin(r),e*Math.sin(r)+a*Math.cos(r)]}function o(){for(var t=[],r=0;r<arguments.length;r++)t[r]=arguments[r];for(var e=0;e<t.length;e++)if("number"!=typeof t[e])throw new Error("assertNumbers arguments["+e+"] is not a number. "+typeof t[e]+" == typeof "+t[e]);return!0}var s=Math.PI;function u(t,r,e){t.lArcFlag=0===t.lArcFlag?0:1,t.sweepFlag=0===t.sweepFlag?0:1;var a=t.rX,i=t.rY,o=t.x,u=t.y;a=Math.abs(t.rX),i=Math.abs(t.rY);var h=n([(r-o)/2,(e-u)/2],-t.xRot/180*s),c=h[0],m=h[1],y=Math.pow(c,2)/Math.pow(a,2)+Math.pow(m,2)/Math.pow(i,2);1<y&&(a*=Math.sqrt(y),i*=Math.sqrt(y)),t.rX=a,t.rY=i;var p=Math.pow(a,2)*Math.pow(m,2)+Math.pow(i,2)*Math.pow(c,2),f=(t.lArcFlag!==t.sweepFlag?1:-1)*Math.sqrt(Math.max(0,(Math.pow(a,2)*Math.pow(i,2)-p)/p)),T=a*m/i*f,O=-i*c/a*f,l=n([T,O],t.xRot/180*s);t.cX=l[0]+(r+o)/2,t.cY=l[1]+(e+u)/2,t.phi1=Math.atan2((m-O)/i,(c-T)/a),t.phi2=Math.atan2((-m-O)/i,(-c-T)/a),0===t.sweepFlag&&t.phi2>t.phi1&&(t.phi2-=2*s),1===t.sweepFlag&&t.phi2<t.phi1&&(t.phi2+=2*s),t.phi1*=180/s,t.phi2*=180/s}function h(t,r,e){o(t,r,e);var a=t*t+r*r-e*e;if(0>a)return[];if(0===a)return[[t*e/(t*t+r*r),r*e/(t*t+r*r)]];var i=Math.sqrt(a);return[[(t*e+r*i)/(t*t+r*r),(r*e-t*i)/(t*t+r*r)],[(t*e-r*i)/(t*t+r*r),(r*e+t*i)/(t*t+r*r)]]}var c=Math.PI/180;function m(t,r,e){return(1-e)*t+e*r}function y(t,r,e,a){return t+Math.cos(a/180*s)*r+Math.sin(a/180*s)*e}function p(t,r,e,a){var i=1e-6,n=r-t,o=e-r,s=3*n+3*(a-e)-6*o,u=6*(o-n),h=3*n;return Math.abs(s)<i?[-h/u]:function(t,r,e){void 0===e&&(e=1e-6);var a=t*t/4-r;if(a<-e)return[];if(a<=e)return[-t/2];var i=Math.sqrt(a);return[-t/2-i,-t/2+i]}(u/s,h/s,i)}function f(t,r,e,a,i){var n=1-i;return t*(n*n*n)+r*(3*n*n*i)+e*(3*n*i*i)+a*(i*i*i)}t.SVGPathDataTransformer=void 0,function(t){function r(){return i((function(t,r,e){return t.relative&&(void 0!==t.x1&&(t.x1+=r),void 0!==t.y1&&(t.y1+=e),void 0!==t.x2&&(t.x2+=r),void 0!==t.y2&&(t.y2+=e),void 0!==t.x&&(t.x+=r),void 0!==t.y&&(t.y+=e),t.relative=!1),t}))}function e(){var t=NaN,r=NaN,e=NaN,a=NaN;return i((function(i,n,o){return i.type&N.SMOOTH_CURVE_TO&&(i.type=N.CURVE_TO,t=isNaN(t)?n:t,r=isNaN(r)?o:r,i.x1=i.relative?n-t:2*n-t,i.y1=i.relative?o-r:2*o-r),i.type&N.CURVE_TO?(t=i.relative?n+i.x2:i.x2,r=i.relative?o+i.y2:i.y2):(t=NaN,r=NaN),i.type&N.SMOOTH_QUAD_TO&&(i.type=N.QUAD_TO,e=isNaN(e)?n:e,a=isNaN(a)?o:a,i.x1=i.relative?n-e:2*n-e,i.y1=i.relative?o-a:2*o-a),i.type&N.QUAD_TO?(e=i.relative?n+i.x1:i.x1,a=i.relative?o+i.y1:i.y1):(e=NaN,a=NaN),i}))}function a(){var t=NaN,r=NaN;return i((function(e,a,i){if(e.type&N.SMOOTH_QUAD_TO&&(e.type=N.QUAD_TO,t=isNaN(t)?a:t,r=isNaN(r)?i:r,e.x1=e.relative?a-t:2*a-t,e.y1=e.relative?i-r:2*i-r),e.type&N.QUAD_TO){t=e.relative?a+e.x1:e.x1,r=e.relative?i+e.y1:e.y1;var n=e.x1,o=e.y1;e.type=N.CURVE_TO,e.x1=((e.relative?0:a)+2*n)/3,e.y1=((e.relative?0:i)+2*o)/3,e.x2=(e.x+2*n)/3,e.y2=(e.y+2*o)/3}else t=NaN,r=NaN;return e}))}function i(t){var r=0,e=0,a=NaN,i=NaN;return function(n){if(isNaN(a)&&!(n.type&N.MOVE_TO))throw new Error("path must start with moveto");var o=t(n,r,e,a,i);return n.type&N.CLOSE_PATH&&(r=a,e=i),void 0!==n.x&&(r=n.relative?r+n.x:n.x),void 0!==n.y&&(e=n.relative?e+n.y:n.y),n.type&N.MOVE_TO&&(a=r,i=e),o}}function s(t,r,e,a,n,s){return o(t,r,e,a,n,s),i((function(i,o,u,h){var c=i.x1,m=i.x2,y=i.relative&&!isNaN(h),p=void 0!==i.x?i.x:y?0:o,f=void 0!==i.y?i.y:y?0:u;function T(t){return t*t}i.type&N.HORIZ_LINE_TO&&0!==r&&(i.type=N.LINE_TO,i.y=i.relative?0:u),i.type&N.VERT_LINE_TO&&0!==e&&(i.type=N.LINE_TO,i.x=i.relative?0:o),void 0!==i.x&&(i.x=i.x*t+f*e+(y?0:n)),void 0!==i.y&&(i.y=p*r+i.y*a+(y?0:s)),void 0!==i.x1&&(i.x1=i.x1*t+i.y1*e+(y?0:n)),void 0!==i.y1&&(i.y1=c*r+i.y1*a+(y?0:s)),void 0!==i.x2&&(i.x2=i.x2*t+i.y2*e+(y?0:n)),void 0!==i.y2&&(i.y2=m*r+i.y2*a+(y?0:s));var O=t*a-r*e;if(void 0!==i.xRot&&(1!==t||0!==r||0!==e||1!==a))if(0===O)delete i.rX,delete i.rY,delete i.xRot,delete i.lArcFlag,delete i.sweepFlag,i.type=N.LINE_TO;else{var l=i.xRot*Math.PI/180,v=Math.sin(l),_=Math.cos(l),d=1/T(i.rX),x=1/T(i.rY),A=T(_)*d+T(v)*x,E=2*v*_*(d-x),C=T(v)*d+T(_)*x,M=A*a*a-E*r*a+C*r*r,R=E*(t*a+r*e)-2*(A*e*a+C*t*r),S=A*e*e-E*t*e+C*t*t,g=(Math.atan2(R,M-S)+Math.PI)%Math.PI/2,I=Math.sin(g),V=Math.cos(g);i.rX=Math.abs(O)/Math.sqrt(M*T(V)+R*I*V+S*T(I)),i.rY=Math.abs(O)/Math.sqrt(M*T(I)-R*I*V+S*T(V)),i.xRot=180*g/Math.PI}return void 0!==i.sweepFlag&&0>O&&(i.sweepFlag=+!i.sweepFlag),i}))}function T(){return function(t){var r={};for(var e in t)r[e]=t[e];return r}}t.ROUND=function(t){function r(r){return Math.round(r*t)/t}return void 0===t&&(t=1e13),o(t),function(t){return void 0!==t.x1&&(t.x1=r(t.x1)),void 0!==t.y1&&(t.y1=r(t.y1)),void 0!==t.x2&&(t.x2=r(t.x2)),void 0!==t.y2&&(t.y2=r(t.y2)),void 0!==t.x&&(t.x=r(t.x)),void 0!==t.y&&(t.y=r(t.y)),void 0!==t.rX&&(t.rX=r(t.rX)),void 0!==t.rY&&(t.rY=r(t.rY)),t}},t.TO_ABS=r,t.TO_REL=function(){return i((function(t,r,e){return t.relative||(void 0!==t.x1&&(t.x1-=r),void 0!==t.y1&&(t.y1-=e),void 0!==t.x2&&(t.x2-=r),void 0!==t.y2&&(t.y2-=e),void 0!==t.x&&(t.x-=r),void 0!==t.y&&(t.y-=e),t.relative=!0),t}))},t.NORMALIZE_HVZ=function(t,r,e){return void 0===t&&(t=!0),void 0===r&&(r=!0),void 0===e&&(e=!0),i((function(a,i,n,o,s){if(isNaN(o)&&!(a.type&N.MOVE_TO))throw new Error("path must start with moveto");return r&&a.type&N.HORIZ_LINE_TO&&(a.type=N.LINE_TO,a.y=a.relative?0:n),e&&a.type&N.VERT_LINE_TO&&(a.type=N.LINE_TO,a.x=a.relative?0:i),t&&a.type&N.CLOSE_PATH&&(a.type=N.LINE_TO,a.x=a.relative?o-i:o,a.y=a.relative?s-n:s),a.type&N.ARC&&(0===a.rX||0===a.rY)&&(a.type=N.LINE_TO,delete a.rX,delete a.rY,delete a.xRot,delete a.lArcFlag,delete a.sweepFlag),a}))},t.NORMALIZE_ST=e,t.QT_TO_C=a,t.INFO=i,t.SANITIZE=function(t){void 0===t&&(t=0),o(t);var r=NaN,e=NaN,a=NaN,n=NaN;return i((function(i,o,s,u,h){var c=Math.abs,m=!1,y=0,p=0;if(i.type&N.SMOOTH_CURVE_TO&&(y=isNaN(r)?0:o-r,p=isNaN(e)?0:s-e),i.type&(N.CURVE_TO|N.SMOOTH_CURVE_TO)?(r=i.relative?o+i.x2:i.x2,e=i.relative?s+i.y2:i.y2):(r=NaN,e=NaN),i.type&N.SMOOTH_QUAD_TO?(a=isNaN(a)?o:2*o-a,n=isNaN(n)?s:2*s-n):i.type&N.QUAD_TO?(a=i.relative?o+i.x1:i.x1,n=i.relative?s+i.y1:i.y2):(a=NaN,n=NaN),i.type&N.LINE_COMMANDS||i.type&N.ARC&&(0===i.rX||0===i.rY||!i.lArcFlag)||i.type&N.CURVE_TO||i.type&N.SMOOTH_CURVE_TO||i.type&N.QUAD_TO||i.type&N.SMOOTH_QUAD_TO){var f=void 0===i.x?0:i.relative?i.x:i.x-o,T=void 0===i.y?0:i.relative?i.y:i.y-s;y=isNaN(a)?void 0===i.x1?y:i.relative?i.x:i.x1-o:a-o,p=isNaN(n)?void 0===i.y1?p:i.relative?i.y:i.y1-s:n-s;var O=void 0===i.x2?0:i.relative?i.x:i.x2-o,l=void 0===i.y2?0:i.relative?i.y:i.y2-s;c(f)<=t&&c(T)<=t&&c(y)<=t&&c(p)<=t&&c(O)<=t&&c(l)<=t&&(m=!0)}return i.type&N.CLOSE_PATH&&c(o-u)<=t&&c(s-h)<=t&&(m=!0),m?[]:i}))},t.MATRIX=s,t.ROTATE=function(t,r,e){void 0===r&&(r=0),void 0===e&&(e=0),o(t,r,e);var a=Math.sin(t),i=Math.cos(t);return s(i,a,-a,i,r-r*i+e*a,e-r*a-e*i)},t.TRANSLATE=function(t,r){return void 0===r&&(r=0),o(t,r),s(1,0,0,1,t,r)},t.SCALE=function(t,r){return void 0===r&&(r=t),o(t,r),s(t,0,0,r,0,0)},t.SKEW_X=function(t){return o(t),s(1,0,Math.atan(t),1,0,0)},t.SKEW_Y=function(t){return o(t),s(1,Math.atan(t),0,1,0,0)},t.X_AXIS_SYMMETRY=function(t){return void 0===t&&(t=0),o(t),s(-1,0,0,1,t,0)},t.Y_AXIS_SYMMETRY=function(t){return void 0===t&&(t=0),o(t),s(1,0,0,-1,0,t)},t.A_TO_C=function(){return i((function(t,r,e){return N.ARC===t.type?function(t,r,e){var a,i,o,s;t.cX||u(t,r,e);for(var h=Math.min(t.phi1,t.phi2),y=Math.max(t.phi1,t.phi2)-h,p=Math.ceil(y/90),f=new Array(p),T=r,O=e,l=0;l<p;l++){var v=m(t.phi1,t.phi2,l/p),_=m(t.phi1,t.phi2,(l+1)/p),d=_-v,x=4/3*Math.tan(d*c/4),A=[Math.cos(v*c)-x*Math.sin(v*c),Math.sin(v*c)+x*Math.cos(v*c)],E=A[0],C=A[1],M=[Math.cos(_*c),Math.sin(_*c)],R=M[0],S=M[1],g=[R+x*Math.sin(_*c),S-x*Math.cos(_*c)],I=g[0],V=g[1];f[l]={relative:t.relative,type:N.CURVE_TO};var D=function(r,e){var a=n([r*t.rX,e*t.rY],t.xRot),i=a[0],o=a[1];return[t.cX+i,t.cY+o]};a=D(E,C),f[l].x1=a[0],f[l].y1=a[1],i=D(I,V),f[l].x2=i[0],f[l].y2=i[1],o=D(R,S),f[l].x=o[0],f[l].y=o[1],t.relative&&(f[l].x1-=T,f[l].y1-=O,f[l].x2-=T,f[l].y2-=O,f[l].x-=T,f[l].y-=O),T=(s=[f[l].x,f[l].y])[0],O=s[1]}return f}(t,t.relative?0:r,t.relative?0:e):t}))},t.ANNOTATE_ARCS=function(){return i((function(t,r,e){return t.relative&&(r=0,e=0),N.ARC===t.type&&u(t,r,e),t}))},t.CLONE=T,t.CALCULATE_BOUNDS=function(){var t=function(t){var r={};for(var e in t)r[e]=t[e];return r},n=r(),o=a(),s=e(),c=i((function(r,e,a){var i=s(o(n(t(r))));function m(t){t>c.maxX&&(c.maxX=t),t<c.minX&&(c.minX=t)}function T(t){t>c.maxY&&(c.maxY=t),t<c.minY&&(c.minY=t)}if(i.type&N.DRAWING_COMMANDS&&(m(e),T(a)),i.type&N.HORIZ_LINE_TO&&m(i.x),i.type&N.VERT_LINE_TO&&T(i.y),i.type&N.LINE_TO&&(m(i.x),T(i.y)),i.type&N.CURVE_TO){m(i.x),T(i.y);for(var O=0,l=p(e,i.x1,i.x2,i.x);O<l.length;O++){0<(H=l[O])&&1>H&&m(f(e,i.x1,i.x2,i.x,H))}for(var v=0,_=p(a,i.y1,i.y2,i.y);v<_.length;v++){0<(H=_[v])&&1>H&&T(f(a,i.y1,i.y2,i.y,H))}}if(i.type&N.ARC){m(i.x),T(i.y),u(i,e,a);for(var d=i.xRot/180*Math.PI,x=Math.cos(d)*i.rX,A=Math.sin(d)*i.rX,E=-Math.sin(d)*i.rY,C=Math.cos(d)*i.rY,M=i.phi1<i.phi2?[i.phi1,i.phi2]:-180>i.phi2?[i.phi2+360,i.phi1+360]:[i.phi2,i.phi1],R=M[0],S=M[1],g=function(t){var r=t[0],e=t[1],a=180*Math.atan2(e,r)/Math.PI;return a<R?a+360:a},I=0,V=h(E,-x,0).map(g);I<V.length;I++){(H=V[I])>R&&H<S&&m(y(i.cX,x,E,H))}for(var D=0,L=h(C,-A,0).map(g);D<L.length;D++){var H;(H=L[D])>R&&H<S&&T(y(i.cY,A,C,H))}}return r}));return c.minX=1/0,c.maxX=-1/0,c.minY=1/0,c.maxY=-1/0,c}}(t.SVGPathDataTransformer||(t.SVGPathDataTransformer={}));var T,O=function(){function r(){}return r.prototype.round=function(r){return this.transform(t.SVGPathDataTransformer.ROUND(r))},r.prototype.toAbs=function(){return this.transform(t.SVGPathDataTransformer.TO_ABS())},r.prototype.toRel=function(){return this.transform(t.SVGPathDataTransformer.TO_REL())},r.prototype.normalizeHVZ=function(r,e,a){return this.transform(t.SVGPathDataTransformer.NORMALIZE_HVZ(r,e,a))},r.prototype.normalizeST=function(){return this.transform(t.SVGPathDataTransformer.NORMALIZE_ST())},r.prototype.qtToC=function(){return this.transform(t.SVGPathDataTransformer.QT_TO_C())},r.prototype.aToC=function(){return this.transform(t.SVGPathDataTransformer.A_TO_C())},r.prototype.sanitize=function(r){return this.transform(t.SVGPathDataTransformer.SANITIZE(r))},r.prototype.translate=function(r,e){return this.transform(t.SVGPathDataTransformer.TRANSLATE(r,e))},r.prototype.scale=function(r,e){return this.transform(t.SVGPathDataTransformer.SCALE(r,e))},r.prototype.rotate=function(r,e,a){return this.transform(t.SVGPathDataTransformer.ROTATE(r,e,a))},r.prototype.matrix=function(r,e,a,i,n,o){return this.transform(t.SVGPathDataTransformer.MATRIX(r,e,a,i,n,o))},r.prototype.skewX=function(r){return this.transform(t.SVGPathDataTransformer.SKEW_X(r))},r.prototype.skewY=function(r){return this.transform(t.SVGPathDataTransformer.SKEW_Y(r))},r.prototype.xSymmetry=function(r){return this.transform(t.SVGPathDataTransformer.X_AXIS_SYMMETRY(r))},r.prototype.ySymmetry=function(r){return this.transform(t.SVGPathDataTransformer.Y_AXIS_SYMMETRY(r))},r.prototype.annotateArcs=function(){return this.transform(t.SVGPathDataTransformer.ANNOTATE_ARCS())},r}(),l=function(t){return" "===t||"\t"===t||"\r"===t||"\n"===t},v=function(t){return"0".charCodeAt(0)<=t.charCodeAt(0)&&t.charCodeAt(0)<="9".charCodeAt(0)},_=function(t){function r(){var r=t.call(this)||this;return r.curNumber="",r.curCommandType=-1,r.curCommandRelative=!1,r.canParseCommandOrComma=!0,r.curNumberHasExp=!1,r.curNumberHasExpDigits=!1,r.curNumberHasDecimal=!1,r.curArgs=[],r}return e(r,t),r.prototype.finish=function(t){if(void 0===t&&(t=[]),this.parse(" ",t),0!==this.curArgs.length||!this.canParseCommandOrComma)throw new SyntaxError("Unterminated command at the path end.");return t},r.prototype.parse=function(t,r){var e=this;void 0===r&&(r=[]);for(var a=function(t){r.push(t),e.curArgs.length=0,e.canParseCommandOrComma=!0},i=0;i<t.length;i++){var n=t[i],o=!(this.curCommandType!==N.ARC||3!==this.curArgs.length&&4!==this.curArgs.length||1!==this.curNumber.length||"0"!==this.curNumber&&"1"!==this.curNumber),s=v(n)&&("0"===this.curNumber&&"0"===n||o);if(!v(n)||s)if("e"!==n&&"E"!==n)if("-"!==n&&"+"!==n||!this.curNumberHasExp||this.curNumberHasExpDigits)if("."!==n||this.curNumberHasExp||this.curNumberHasDecimal||o){if(this.curNumber&&-1!==this.curCommandType){var u=Number(this.curNumber);if(isNaN(u))throw new SyntaxError("Invalid number ending at "+i);if(this.curCommandType===N.ARC)if(0===this.curArgs.length||1===this.curArgs.length){if(0>u)throw new SyntaxError('Expected positive number, got "'+u+'" at index "'+i+'"')}else if((3===this.curArgs.length||4===this.curArgs.length)&&"0"!==this.curNumber&&"1"!==this.curNumber)throw new SyntaxError('Expected a flag, got "'+this.curNumber+'" at index "'+i+'"');this.curArgs.push(u),this.curArgs.length===d[this.curCommandType]&&(N.HORIZ_LINE_TO===this.curCommandType?a({type:N.HORIZ_LINE_TO,relative:this.curCommandRelative,x:u}):N.VERT_LINE_TO===this.curCommandType?a({type:N.VERT_LINE_TO,relative:this.curCommandRelative,y:u}):this.curCommandType===N.MOVE_TO||this.curCommandType===N.LINE_TO||this.curCommandType===N.SMOOTH_QUAD_TO?(a({type:this.curCommandType,relative:this.curCommandRelative,x:this.curArgs[0],y:this.curArgs[1]}),N.MOVE_TO===this.curCommandType&&(this.curCommandType=N.LINE_TO)):this.curCommandType===N.CURVE_TO?a({type:N.CURVE_TO,relative:this.curCommandRelative,x1:this.curArgs[0],y1:this.curArgs[1],x2:this.curArgs[2],y2:this.curArgs[3],x:this.curArgs[4],y:this.curArgs[5]}):this.curCommandType===N.SMOOTH_CURVE_TO?a({type:N.SMOOTH_CURVE_TO,relative:this.curCommandRelative,x2:this.curArgs[0],y2:this.curArgs[1],x:this.curArgs[2],y:this.curArgs[3]}):this.curCommandType===N.QUAD_TO?a({type:N.QUAD_TO,relative:this.curCommandRelative,x1:this.curArgs[0],y1:this.curArgs[1],x:this.curArgs[2],y:this.curArgs[3]}):this.curCommandType===N.ARC&&a({type:N.ARC,relative:this.curCommandRelative,rX:this.curArgs[0],rY:this.curArgs[1],xRot:this.curArgs[2],lArcFlag:this.curArgs[3],sweepFlag:this.curArgs[4],x:this.curArgs[5],y:this.curArgs[6]})),this.curNumber="",this.curNumberHasExpDigits=!1,this.curNumberHasExp=!1,this.curNumberHasDecimal=!1,this.canParseCommandOrComma=!0}if(!l(n))if(","===n&&this.canParseCommandOrComma)this.canParseCommandOrComma=!1;else if("+"!==n&&"-"!==n&&"."!==n)if(s)this.curNumber=n,this.curNumberHasDecimal=!1;else{if(0!==this.curArgs.length)throw new SyntaxError("Unterminated command at index "+i+".");if(!this.canParseCommandOrComma)throw new SyntaxError('Unexpected character "'+n+'" at index '+i+". Command cannot follow comma");if(this.canParseCommandOrComma=!1,"z"!==n&&"Z"!==n)if("h"===n||"H"===n)this.curCommandType=N.HORIZ_LINE_TO,this.curCommandRelative="h"===n;else if("v"===n||"V"===n)this.curCommandType=N.VERT_LINE_TO,this.curCommandRelative="v"===n;else if("m"===n||"M"===n)this.curCommandType=N.MOVE_TO,this.curCommandRelative="m"===n;else if("l"===n||"L"===n)this.curCommandType=N.LINE_TO,this.curCommandRelative="l"===n;else if("c"===n||"C"===n)this.curCommandType=N.CURVE_TO,this.curCommandRelative="c"===n;else if("s"===n||"S"===n)this.curCommandType=N.SMOOTH_CURVE_TO,this.curCommandRelative="s"===n;else if("q"===n||"Q"===n)this.curCommandType=N.QUAD_TO,this.curCommandRelative="q"===n;else if("t"===n||"T"===n)this.curCommandType=N.SMOOTH_QUAD_TO,this.curCommandRelative="t"===n;else{if("a"!==n&&"A"!==n)throw new SyntaxError('Unexpected character "'+n+'" at index '+i+".");this.curCommandType=N.ARC,this.curCommandRelative="a"===n}else r.push({type:N.CLOSE_PATH}),this.canParseCommandOrComma=!0,this.curCommandType=-1}else this.curNumber=n,this.curNumberHasDecimal="."===n}else this.curNumber+=n,this.curNumberHasDecimal=!0;else this.curNumber+=n;else this.curNumber+=n,this.curNumberHasExp=!0;else this.curNumber+=n,this.curNumberHasExpDigits=this.curNumberHasExp}return r},r.prototype.transform=function(t){return Object.create(this,{parse:{value:function(r,e){void 0===e&&(e=[]);for(var a=0,i=Object.getPrototypeOf(this).parse.call(this,r);a<i.length;a++){var n=i[a],o=t(n);Array.isArray(o)?e.push.apply(e,o):e.push(o)}return e}}})},r}(O),N=function(r){function a(t){var e=r.call(this)||this;return e.commands="string"==typeof t?a.parse(t):t,e}return e(a,r),a.prototype.encode=function(){return a.encode(this.commands)},a.prototype.getBounds=function(){var r=t.SVGPathDataTransformer.CALCULATE_BOUNDS();return this.transform(r),r},a.prototype.transform=function(t){for(var r=[],e=0,a=this.commands;e<a.length;e++){var i=t(a[e]);Array.isArray(i)?r.push.apply(r,i):r.push(i)}return this.commands=r,this},a.encode=function(t){return i(t)},a.parse=function(t){var r=new _,e=[];return r.parse(t,e),r.finish(e),e},a.CLOSE_PATH=1,a.MOVE_TO=2,a.HORIZ_LINE_TO=4,a.VERT_LINE_TO=8,a.LINE_TO=16,a.CURVE_TO=32,a.SMOOTH_CURVE_TO=64,a.QUAD_TO=128,a.SMOOTH_QUAD_TO=256,a.ARC=512,a.LINE_COMMANDS=a.LINE_TO|a.HORIZ_LINE_TO|a.VERT_LINE_TO,a.DRAWING_COMMANDS=a.HORIZ_LINE_TO|a.VERT_LINE_TO|a.LINE_TO|a.CURVE_TO|a.SMOOTH_CURVE_TO|a.QUAD_TO|a.SMOOTH_QUAD_TO|a.ARC,a}(O),d=((T={})[N.MOVE_TO]=2,T[N.LINE_TO]=2,T[N.HORIZ_LINE_TO]=1,T[N.VERT_LINE_TO]=1,T[N.CLOSE_PATH]=0,T[N.QUAD_TO]=4,T[N.SMOOTH_QUAD_TO]=2,T[N.CURVE_TO]=6,T[N.SMOOTH_CURVE_TO]=4,T[N.ARC]=7,T);t.COMMAND_ARG_COUNTS=d,t.SVGPathData=N,t.SVGPathDataParser=_,t.encodeSVGPath=i,Object.defineProperty(t,"__esModule",{value:!0})}));
|
|
16
|
+
//# sourceMappingURL=SVGPathData.cjs.map
|