neo-cmp-cli 1.0.0
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/README.md +236 -0
- package/bin/neo.js +2 -0
- package/package.json +74 -0
- package/src/config/default.config.js +136 -0
- package/src/config/index.js +9 -0
- package/src/initData/defaultTemplate.html +13 -0
- package/src/initData/neo.config.js +99 -0
- package/src/module/index.js +244 -0
- package/src/module/inspect.js +40 -0
- package/src/module/main.js +109 -0
- package/src/module/neoInit.js +44 -0
- package/src/module/neoInitByCopy.js +37 -0
- package/src/oss/publish2oss.js +218 -0
- package/src/plugins/README.md +2 -0
- package/src/template/react-custom-widget-template/.editorconfig +10 -0
- package/src/template/react-custom-widget-template/.prettierrc.js +12 -0
- package/src/template/react-custom-widget-template/README.md +51 -0
- package/src/template/react-custom-widget-template/commitlint.config.js +59 -0
- package/src/template/react-custom-widget-template/neo.config.js +112 -0
- package/src/template/react-custom-widget-template/package.json +56 -0
- package/src/template/react-custom-widget-template/public/css/base.css +283 -0
- package/src/template/react-custom-widget-template/public/scripts/app/bluebird.js +6679 -0
- package/src/template/react-custom-widget-template/public/template.html +13 -0
- package/src/template/react-custom-widget-template/src/assets/css/common.scss +127 -0
- package/src/template/react-custom-widget-template/src/assets/css/mixin.scss +47 -0
- package/src/template/react-custom-widget-template/src/components/info-card/index.jsx +45 -0
- package/src/template/react-custom-widget-template/src/components/info-card/model.js +81 -0
- package/src/template/react-custom-widget-template/src/components/info-card/register.js +4 -0
- package/src/template/react-custom-widget-template/src/components/info-card/style.scss +67 -0
- package/src/template/react-custom-widget-template/src/preview.js +5 -0
- package/src/template/react-ts-custom-widget-template/.editorconfig +10 -0
- package/src/template/react-ts-custom-widget-template/.prettierrc.js +12 -0
- package/src/template/react-ts-custom-widget-template/README.md +53 -0
- package/src/template/react-ts-custom-widget-template/commitlint.config.js +59 -0
- package/src/template/react-ts-custom-widget-template/neo.config.js +106 -0
- package/src/template/react-ts-custom-widget-template/package.json +59 -0
- package/src/template/react-ts-custom-widget-template/public/css/base.css +283 -0
- package/src/template/react-ts-custom-widget-template/public/scripts/app/bluebird.js +6679 -0
- package/src/template/react-ts-custom-widget-template/public/template.html +13 -0
- package/src/template/react-ts-custom-widget-template/src/assets/css/common.scss +127 -0
- package/src/template/react-ts-custom-widget-template/src/assets/css/mixin.scss +47 -0
- package/src/template/react-ts-custom-widget-template/src/components/info-card/index.tsx +70 -0
- package/src/template/react-ts-custom-widget-template/src/components/info-card/plugin.ts +80 -0
- package/src/template/react-ts-custom-widget-template/src/components/info-card/register.ts +5 -0
- package/src/template/react-ts-custom-widget-template/src/components/info-card/style.scss +105 -0
- package/src/template/react-ts-custom-widget-template/src/components/list-widget/README.md +2 -0
- package/src/template/react-ts-custom-widget-template/src/components/list-widget/index.tsx +208 -0
- package/src/template/react-ts-custom-widget-template/src/components/list-widget/model.ts +92 -0
- package/src/template/react-ts-custom-widget-template/src/components/list-widget/register.ts +5 -0
- package/src/template/react-ts-custom-widget-template/src/components/list-widget/style.scss +350 -0
- package/src/template/react-ts-custom-widget-template/src/preview.tsx +37 -0
- package/src/template/react-ts-custom-widget-template/tsconfig.json +68 -0
- package/src/template/vue2-neo-custom-widget/.editorconfig +10 -0
- package/src/template/vue2-neo-custom-widget/.prettierrc.js +12 -0
- package/src/template/vue2-neo-custom-widget/README.md +52 -0
- package/src/template/vue2-neo-custom-widget/commitlint.config.js +59 -0
- package/src/template/vue2-neo-custom-widget/neo.config.js +122 -0
- package/src/template/vue2-neo-custom-widget/package.json +59 -0
- package/src/template/vue2-neo-custom-widget/public/css/base.css +283 -0
- package/src/template/vue2-neo-custom-widget/public/scripts/app/bluebird.js +6679 -0
- package/src/template/vue2-neo-custom-widget/public/template.html +13 -0
- package/src/template/vue2-neo-custom-widget/src/assets/css/common.scss +126 -0
- package/src/template/vue2-neo-custom-widget/src/assets/css/mixin.scss +47 -0
- package/src/template/vue2-neo-custom-widget/src/preview.js +9 -0
- package/src/template/vue2-neo-custom-widget/src/widgets/info-card/index.vue +131 -0
- package/src/template/vue2-neo-custom-widget/src/widgets/info-card/plugin.js +81 -0
- package/src/template/vue2-neo-custom-widget/src/widgets/info-card/register.js +8 -0
- package/src/utils/getConfigObj.js +18 -0
- package/src/utils/getEntries.js +54 -0
- package/src/utils/neoConfigInit.js +13 -0
- package/src/utils/neoParams.js +12 -0
- package/src/utils/pathUtils.js +23 -0
- package/src/utils/projectNameValidator.js +76 -0
- package/src/utils/replaceInFiles.js +47 -0
- package/src/utils/replaceInPackage.js +134 -0
- package/test/demo.js +3 -0
There are too many changes on this page to be displayed.
The amount of changes on this page would crash your brower.
You can still verify the content by downloading the package file manually.