├── .babelrc ├── .eslintrc ├── .gitignore ├── LICENSE ├── README.md ├── gulpfile.babel.js ├── config.js ├── index.js ├── tasks │ ├── appx.js │ ├── browserSync.js │ ├── bundle.js │ ├── clean.js │ ├── copy.js │ ├── deploy.js │ └── minify.js └── util │ └── handleErrors.js ├── jsconfig.json ├── package.json ├── src ├── AppxManifest.xml ├── bundles │ └── bundle.js ├── css │ └── app.scss ├── img │ ├── logo.png │ ├── smalllogo.png │ ├── splashscreen.png │ └── storelogo.png ├── index.html ├── js │ └── main.js └── web.config └── tsd.json /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015"] 3 | } -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/appx-starter/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/appx-starter/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/appx-starter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/appx-starter/HEAD/README.md -------------------------------------------------------------------------------- /gulpfile.babel.js/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/appx-starter/HEAD/gulpfile.babel.js/config.js -------------------------------------------------------------------------------- /gulpfile.babel.js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/appx-starter/HEAD/gulpfile.babel.js/index.js -------------------------------------------------------------------------------- /gulpfile.babel.js/tasks/appx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/appx-starter/HEAD/gulpfile.babel.js/tasks/appx.js -------------------------------------------------------------------------------- /gulpfile.babel.js/tasks/browserSync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/appx-starter/HEAD/gulpfile.babel.js/tasks/browserSync.js -------------------------------------------------------------------------------- /gulpfile.babel.js/tasks/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/appx-starter/HEAD/gulpfile.babel.js/tasks/bundle.js -------------------------------------------------------------------------------- /gulpfile.babel.js/tasks/clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/appx-starter/HEAD/gulpfile.babel.js/tasks/clean.js -------------------------------------------------------------------------------- /gulpfile.babel.js/tasks/copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/appx-starter/HEAD/gulpfile.babel.js/tasks/copy.js -------------------------------------------------------------------------------- /gulpfile.babel.js/tasks/deploy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/appx-starter/HEAD/gulpfile.babel.js/tasks/deploy.js -------------------------------------------------------------------------------- /gulpfile.babel.js/tasks/minify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/appx-starter/HEAD/gulpfile.babel.js/tasks/minify.js -------------------------------------------------------------------------------- /gulpfile.babel.js/util/handleErrors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/appx-starter/HEAD/gulpfile.babel.js/util/handleErrors.js -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/appx-starter/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/appx-starter/HEAD/package.json -------------------------------------------------------------------------------- /src/AppxManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/appx-starter/HEAD/src/AppxManifest.xml -------------------------------------------------------------------------------- /src/bundles/bundle.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/css/app.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/appx-starter/HEAD/src/img/logo.png -------------------------------------------------------------------------------- /src/img/smalllogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/appx-starter/HEAD/src/img/smalllogo.png -------------------------------------------------------------------------------- /src/img/splashscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/appx-starter/HEAD/src/img/splashscreen.png -------------------------------------------------------------------------------- /src/img/storelogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/appx-starter/HEAD/src/img/storelogo.png -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/appx-starter/HEAD/src/index.html -------------------------------------------------------------------------------- /src/js/main.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/appx-starter/HEAD/src/web.config -------------------------------------------------------------------------------- /tsd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftEdge/appx-starter/HEAD/tsd.json --------------------------------------------------------------------------------