├── .editorconfig ├── .eslintrc ├── .gitignore ├── .vscode └── launch.json ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── appveyor.yml ├── bin ├── page ├── page-create ├── page-init └── page-list ├── circle.yml ├── docs └── build.md ├── issue_template.md ├── lib ├── ask.js ├── check-version.js ├── eval.js ├── filter.js ├── generate.js ├── generateLocal.js ├── git-user.js ├── local-path.js ├── logger.js ├── options.js ├── pageQuestions.js └── warnings.js ├── package.json └── templates ├── Button ├── assets │ └── json │ │ └── button.json ├── config │ └── config.js ├── router │ └── routes.js └── views │ └── Button.vue ├── Object ├── components │ ├── BackPage.vue │ ├── Clock.vue │ └── Header.vue ├── config │ └── config.js ├── router │ └── routes.js └── views │ └── Object.vue ├── Sticker ├── assets │ └── json │ │ └── tv.json ├── config │ └── config.js ├── router │ └── routes.js └── views │ └── Sticker.vue ├── Urt ├── assets │ └── json │ │ └── urt.js ├── components │ ├── Clock.vue │ └── urt │ │ └── UrtDialog.vue ├── config │ └── config.js ├── router │ └── routes.js └── views │ └── Urt.vue ├── View ├── components │ ├── Clock.vue │ └── HeaderLogin.vue ├── config │ └── config.js ├── router │ └── routes.js └── views │ └── View.vue └── Yp ├── components └── yp │ └── EditDialog.vue ├── config └── config.js ├── router └── routes.js └── views └── Yp.vue /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motebus/page-cli/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motebus/page-cli/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motebus/page-cli/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motebus/page-cli/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motebus/page-cli/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motebus/page-cli/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motebus/page-cli/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motebus/page-cli/HEAD/appveyor.yml -------------------------------------------------------------------------------- /bin/page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motebus/page-cli/HEAD/bin/page -------------------------------------------------------------------------------- /bin/page-create: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motebus/page-cli/HEAD/bin/page-create -------------------------------------------------------------------------------- /bin/page-init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motebus/page-cli/HEAD/bin/page-init -------------------------------------------------------------------------------- /bin/page-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motebus/page-cli/HEAD/bin/page-list -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motebus/page-cli/HEAD/circle.yml -------------------------------------------------------------------------------- /docs/build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motebus/page-cli/HEAD/docs/build.md -------------------------------------------------------------------------------- /issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motebus/page-cli/HEAD/issue_template.md -------------------------------------------------------------------------------- /lib/ask.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motebus/page-cli/HEAD/lib/ask.js -------------------------------------------------------------------------------- /lib/check-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motebus/page-cli/HEAD/lib/check-version.js -------------------------------------------------------------------------------- /lib/eval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motebus/page-cli/HEAD/lib/eval.js -------------------------------------------------------------------------------- /lib/filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motebus/page-cli/HEAD/lib/filter.js -------------------------------------------------------------------------------- /lib/generate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motebus/page-cli/HEAD/lib/generate.js -------------------------------------------------------------------------------- /lib/generateLocal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motebus/page-cli/HEAD/lib/generateLocal.js -------------------------------------------------------------------------------- /lib/git-user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motebus/page-cli/HEAD/lib/git-user.js -------------------------------------------------------------------------------- /lib/local-path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motebus/page-cli/HEAD/lib/local-path.js -------------------------------------------------------------------------------- /lib/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motebus/page-cli/HEAD/lib/logger.js -------------------------------------------------------------------------------- /lib/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motebus/page-cli/HEAD/lib/options.js -------------------------------------------------------------------------------- /lib/pageQuestions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motebus/page-cli/HEAD/lib/pageQuestions.js -------------------------------------------------------------------------------- /lib/warnings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motebus/page-cli/HEAD/lib/warnings.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motebus/page-cli/HEAD/package.json -------------------------------------------------------------------------------- /templates/Button/assets/json/button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motebus/page-cli/HEAD/templates/Button/assets/json/button.json -------------------------------------------------------------------------------- /templates/Button/config/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motebus/page-cli/HEAD/templates/Button/config/config.js -------------------------------------------------------------------------------- /templates/Button/router/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motebus/page-cli/HEAD/templates/Button/router/routes.js -------------------------------------------------------------------------------- /templates/Button/views/Button.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motebus/page-cli/HEAD/templates/Button/views/Button.vue -------------------------------------------------------------------------------- /templates/Object/components/BackPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motebus/page-cli/HEAD/templates/Object/components/BackPage.vue -------------------------------------------------------------------------------- /templates/Object/components/Clock.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motebus/page-cli/HEAD/templates/Object/components/Clock.vue -------------------------------------------------------------------------------- /templates/Object/components/Header.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motebus/page-cli/HEAD/templates/Object/components/Header.vue -------------------------------------------------------------------------------- /templates/Object/config/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motebus/page-cli/HEAD/templates/Object/config/config.js -------------------------------------------------------------------------------- /templates/Object/router/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motebus/page-cli/HEAD/templates/Object/router/routes.js -------------------------------------------------------------------------------- /templates/Object/views/Object.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motebus/page-cli/HEAD/templates/Object/views/Object.vue -------------------------------------------------------------------------------- /templates/Sticker/assets/json/tv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motebus/page-cli/HEAD/templates/Sticker/assets/json/tv.json -------------------------------------------------------------------------------- /templates/Sticker/config/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motebus/page-cli/HEAD/templates/Sticker/config/config.js -------------------------------------------------------------------------------- /templates/Sticker/router/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motebus/page-cli/HEAD/templates/Sticker/router/routes.js -------------------------------------------------------------------------------- /templates/Sticker/views/Sticker.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motebus/page-cli/HEAD/templates/Sticker/views/Sticker.vue -------------------------------------------------------------------------------- /templates/Urt/assets/json/urt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motebus/page-cli/HEAD/templates/Urt/assets/json/urt.js -------------------------------------------------------------------------------- /templates/Urt/components/Clock.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motebus/page-cli/HEAD/templates/Urt/components/Clock.vue -------------------------------------------------------------------------------- /templates/Urt/components/urt/UrtDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motebus/page-cli/HEAD/templates/Urt/components/urt/UrtDialog.vue -------------------------------------------------------------------------------- /templates/Urt/config/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motebus/page-cli/HEAD/templates/Urt/config/config.js -------------------------------------------------------------------------------- /templates/Urt/router/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motebus/page-cli/HEAD/templates/Urt/router/routes.js -------------------------------------------------------------------------------- /templates/Urt/views/Urt.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motebus/page-cli/HEAD/templates/Urt/views/Urt.vue -------------------------------------------------------------------------------- /templates/View/components/Clock.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motebus/page-cli/HEAD/templates/View/components/Clock.vue -------------------------------------------------------------------------------- /templates/View/components/HeaderLogin.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motebus/page-cli/HEAD/templates/View/components/HeaderLogin.vue -------------------------------------------------------------------------------- /templates/View/config/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motebus/page-cli/HEAD/templates/View/config/config.js -------------------------------------------------------------------------------- /templates/View/router/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motebus/page-cli/HEAD/templates/View/router/routes.js -------------------------------------------------------------------------------- /templates/View/views/View.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motebus/page-cli/HEAD/templates/View/views/View.vue -------------------------------------------------------------------------------- /templates/Yp/components/yp/EditDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motebus/page-cli/HEAD/templates/Yp/components/yp/EditDialog.vue -------------------------------------------------------------------------------- /templates/Yp/config/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motebus/page-cli/HEAD/templates/Yp/config/config.js -------------------------------------------------------------------------------- /templates/Yp/router/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motebus/page-cli/HEAD/templates/Yp/router/routes.js -------------------------------------------------------------------------------- /templates/Yp/views/Yp.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motebus/page-cli/HEAD/templates/Yp/views/Yp.vue --------------------------------------------------------------------------------