├── .gitignore ├── LICENSE ├── README.md ├── meta.js ├── package.json └── template ├── .babelrc ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── README.md ├── build ├── build.js ├── check-versions.js ├── dev-client.js ├── dev-server.js ├── utils.js ├── webpack.base.conf.js ├── webpack.dev.conf.js └── webpack.prod.conf.js ├── config.xml ├── config ├── dev.env.js ├── index.js ├── prod.env.js └── test.env.js ├── hooks └── README.md ├── index.html ├── package.json ├── platforms └── README.md ├── plugins ├── android.json ├── browser.json ├── cordova-plugin-whitelist │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── NOTICE │ ├── README.md │ ├── RELEASENOTES.md │ ├── doc │ │ ├── de │ │ │ └── README.md │ │ ├── es │ │ │ └── README.md │ │ ├── fr │ │ │ └── README.md │ │ ├── it │ │ │ └── README.md │ │ ├── ja │ │ │ └── README.md │ │ ├── ko │ │ │ └── README.md │ │ ├── pl │ │ │ └── README.md │ │ └── zh │ │ │ └── README.md │ ├── package.json │ ├── plugin.xml │ └── src │ │ └── android │ │ └── WhitelistPlugin.java ├── fetch.json └── ios.json ├── src ├── App.vue ├── assets │ └── logo.png ├── components │ ├── Hello.vue │ └── pages │ │ └── About.vue ├── main.js └── routes.js ├── static └── .gitkeep ├── test ├── e2e │ ├── custom-assertions │ │ └── elementCount.js │ ├── nightwatch.conf.js │ ├── runner.js │ └── specs │ │ └── test.js └── unit │ ├── .eslintrc │ ├── index.js │ ├── karma.conf.js │ └── specs │ └── Hello.spec.js └── www └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | docs/_book 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppointmentGuru/webpack-mobile-f7/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppointmentGuru/webpack-mobile-f7/HEAD/README.md -------------------------------------------------------------------------------- /meta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppointmentGuru/webpack-mobile-f7/HEAD/meta.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppointmentGuru/webpack-mobile-f7/HEAD/package.json -------------------------------------------------------------------------------- /template/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppointmentGuru/webpack-mobile-f7/HEAD/template/.babelrc -------------------------------------------------------------------------------- /template/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppointmentGuru/webpack-mobile-f7/HEAD/template/.editorconfig -------------------------------------------------------------------------------- /template/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppointmentGuru/webpack-mobile-f7/HEAD/template/.eslintignore -------------------------------------------------------------------------------- /template/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppointmentGuru/webpack-mobile-f7/HEAD/template/.eslintrc.js -------------------------------------------------------------------------------- /template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppointmentGuru/webpack-mobile-f7/HEAD/template/.gitignore -------------------------------------------------------------------------------- /template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppointmentGuru/webpack-mobile-f7/HEAD/template/README.md -------------------------------------------------------------------------------- /template/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppointmentGuru/webpack-mobile-f7/HEAD/template/build/build.js -------------------------------------------------------------------------------- /template/build/check-versions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppointmentGuru/webpack-mobile-f7/HEAD/template/build/check-versions.js -------------------------------------------------------------------------------- /template/build/dev-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppointmentGuru/webpack-mobile-f7/HEAD/template/build/dev-client.js -------------------------------------------------------------------------------- /template/build/dev-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppointmentGuru/webpack-mobile-f7/HEAD/template/build/dev-server.js -------------------------------------------------------------------------------- /template/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppointmentGuru/webpack-mobile-f7/HEAD/template/build/utils.js -------------------------------------------------------------------------------- /template/build/webpack.base.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppointmentGuru/webpack-mobile-f7/HEAD/template/build/webpack.base.conf.js -------------------------------------------------------------------------------- /template/build/webpack.dev.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppointmentGuru/webpack-mobile-f7/HEAD/template/build/webpack.dev.conf.js -------------------------------------------------------------------------------- /template/build/webpack.prod.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppointmentGuru/webpack-mobile-f7/HEAD/template/build/webpack.prod.conf.js -------------------------------------------------------------------------------- /template/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppointmentGuru/webpack-mobile-f7/HEAD/template/config.xml -------------------------------------------------------------------------------- /template/config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppointmentGuru/webpack-mobile-f7/HEAD/template/config/dev.env.js -------------------------------------------------------------------------------- /template/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppointmentGuru/webpack-mobile-f7/HEAD/template/config/index.js -------------------------------------------------------------------------------- /template/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /template/config/test.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppointmentGuru/webpack-mobile-f7/HEAD/template/config/test.env.js -------------------------------------------------------------------------------- /template/hooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppointmentGuru/webpack-mobile-f7/HEAD/template/hooks/README.md -------------------------------------------------------------------------------- /template/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppointmentGuru/webpack-mobile-f7/HEAD/template/index.html -------------------------------------------------------------------------------- /template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppointmentGuru/webpack-mobile-f7/HEAD/template/package.json -------------------------------------------------------------------------------- /template/platforms/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /template/plugins/android.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppointmentGuru/webpack-mobile-f7/HEAD/template/plugins/android.json -------------------------------------------------------------------------------- /template/plugins/browser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppointmentGuru/webpack-mobile-f7/HEAD/template/plugins/browser.json -------------------------------------------------------------------------------- /template/plugins/cordova-plugin-whitelist/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppointmentGuru/webpack-mobile-f7/HEAD/template/plugins/cordova-plugin-whitelist/CONTRIBUTING.md -------------------------------------------------------------------------------- /template/plugins/cordova-plugin-whitelist/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppointmentGuru/webpack-mobile-f7/HEAD/template/plugins/cordova-plugin-whitelist/LICENSE -------------------------------------------------------------------------------- /template/plugins/cordova-plugin-whitelist/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppointmentGuru/webpack-mobile-f7/HEAD/template/plugins/cordova-plugin-whitelist/NOTICE -------------------------------------------------------------------------------- /template/plugins/cordova-plugin-whitelist/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppointmentGuru/webpack-mobile-f7/HEAD/template/plugins/cordova-plugin-whitelist/README.md -------------------------------------------------------------------------------- /template/plugins/cordova-plugin-whitelist/RELEASENOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppointmentGuru/webpack-mobile-f7/HEAD/template/plugins/cordova-plugin-whitelist/RELEASENOTES.md -------------------------------------------------------------------------------- /template/plugins/cordova-plugin-whitelist/doc/de/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppointmentGuru/webpack-mobile-f7/HEAD/template/plugins/cordova-plugin-whitelist/doc/de/README.md -------------------------------------------------------------------------------- /template/plugins/cordova-plugin-whitelist/doc/es/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppointmentGuru/webpack-mobile-f7/HEAD/template/plugins/cordova-plugin-whitelist/doc/es/README.md -------------------------------------------------------------------------------- /template/plugins/cordova-plugin-whitelist/doc/fr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppointmentGuru/webpack-mobile-f7/HEAD/template/plugins/cordova-plugin-whitelist/doc/fr/README.md -------------------------------------------------------------------------------- /template/plugins/cordova-plugin-whitelist/doc/it/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppointmentGuru/webpack-mobile-f7/HEAD/template/plugins/cordova-plugin-whitelist/doc/it/README.md -------------------------------------------------------------------------------- /template/plugins/cordova-plugin-whitelist/doc/ja/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppointmentGuru/webpack-mobile-f7/HEAD/template/plugins/cordova-plugin-whitelist/doc/ja/README.md -------------------------------------------------------------------------------- /template/plugins/cordova-plugin-whitelist/doc/ko/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppointmentGuru/webpack-mobile-f7/HEAD/template/plugins/cordova-plugin-whitelist/doc/ko/README.md -------------------------------------------------------------------------------- /template/plugins/cordova-plugin-whitelist/doc/pl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppointmentGuru/webpack-mobile-f7/HEAD/template/plugins/cordova-plugin-whitelist/doc/pl/README.md -------------------------------------------------------------------------------- /template/plugins/cordova-plugin-whitelist/doc/zh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppointmentGuru/webpack-mobile-f7/HEAD/template/plugins/cordova-plugin-whitelist/doc/zh/README.md -------------------------------------------------------------------------------- /template/plugins/cordova-plugin-whitelist/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppointmentGuru/webpack-mobile-f7/HEAD/template/plugins/cordova-plugin-whitelist/package.json -------------------------------------------------------------------------------- /template/plugins/cordova-plugin-whitelist/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppointmentGuru/webpack-mobile-f7/HEAD/template/plugins/cordova-plugin-whitelist/plugin.xml -------------------------------------------------------------------------------- /template/plugins/cordova-plugin-whitelist/src/android/WhitelistPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppointmentGuru/webpack-mobile-f7/HEAD/template/plugins/cordova-plugin-whitelist/src/android/WhitelistPlugin.java -------------------------------------------------------------------------------- /template/plugins/fetch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppointmentGuru/webpack-mobile-f7/HEAD/template/plugins/fetch.json -------------------------------------------------------------------------------- /template/plugins/ios.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppointmentGuru/webpack-mobile-f7/HEAD/template/plugins/ios.json -------------------------------------------------------------------------------- /template/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppointmentGuru/webpack-mobile-f7/HEAD/template/src/App.vue -------------------------------------------------------------------------------- /template/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppointmentGuru/webpack-mobile-f7/HEAD/template/src/assets/logo.png -------------------------------------------------------------------------------- /template/src/components/Hello.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppointmentGuru/webpack-mobile-f7/HEAD/template/src/components/Hello.vue -------------------------------------------------------------------------------- /template/src/components/pages/About.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppointmentGuru/webpack-mobile-f7/HEAD/template/src/components/pages/About.vue -------------------------------------------------------------------------------- /template/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppointmentGuru/webpack-mobile-f7/HEAD/template/src/main.js -------------------------------------------------------------------------------- /template/src/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppointmentGuru/webpack-mobile-f7/HEAD/template/src/routes.js -------------------------------------------------------------------------------- /template/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /template/test/e2e/custom-assertions/elementCount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppointmentGuru/webpack-mobile-f7/HEAD/template/test/e2e/custom-assertions/elementCount.js -------------------------------------------------------------------------------- /template/test/e2e/nightwatch.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppointmentGuru/webpack-mobile-f7/HEAD/template/test/e2e/nightwatch.conf.js -------------------------------------------------------------------------------- /template/test/e2e/runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppointmentGuru/webpack-mobile-f7/HEAD/template/test/e2e/runner.js -------------------------------------------------------------------------------- /template/test/e2e/specs/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppointmentGuru/webpack-mobile-f7/HEAD/template/test/e2e/specs/test.js -------------------------------------------------------------------------------- /template/test/unit/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppointmentGuru/webpack-mobile-f7/HEAD/template/test/unit/.eslintrc -------------------------------------------------------------------------------- /template/test/unit/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppointmentGuru/webpack-mobile-f7/HEAD/template/test/unit/index.js -------------------------------------------------------------------------------- /template/test/unit/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppointmentGuru/webpack-mobile-f7/HEAD/template/test/unit/karma.conf.js -------------------------------------------------------------------------------- /template/test/unit/specs/Hello.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AppointmentGuru/webpack-mobile-f7/HEAD/template/test/unit/specs/Hello.spec.js -------------------------------------------------------------------------------- /template/www/index.html: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------