From: Eduardo San Martin Morote Date: Fri, 24 Jan 2020 08:42:25 +0000 (+0100) Subject: refactor: rename explorations into playground X-Git-Tag: v4.0.0-alpha.0~86 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=71acdb43fb45ea625ed08576707ae799a6bebdc9;p=thirdparty%2Fvuejs%2Frouter.git refactor: rename explorations into playground --- diff --git a/explorations/App.vue b/playground/App.vue similarity index 100% rename from explorations/App.vue rename to playground/App.vue diff --git a/explorations/html5.html b/playground/index.html similarity index 100% rename from explorations/html5.html rename to playground/index.html diff --git a/explorations/html5.ts b/playground/main.ts similarity index 100% rename from explorations/html5.ts rename to playground/main.ts diff --git a/explorations/router.ts b/playground/router.ts similarity index 100% rename from explorations/router.ts rename to playground/router.ts diff --git a/explorations/scrollWaiter.ts b/playground/scrollWaiter.ts similarity index 100% rename from explorations/scrollWaiter.ts rename to playground/scrollWaiter.ts diff --git a/explorations/shim.d.ts b/playground/shim.d.ts similarity index 100% rename from explorations/shim.d.ts rename to playground/shim.d.ts diff --git a/explorations/store.ts b/playground/store.ts similarity index 100% rename from explorations/store.ts rename to playground/store.ts diff --git a/explorations/tsconfig.json b/playground/tsconfig.json similarity index 100% rename from explorations/tsconfig.json rename to playground/tsconfig.json diff --git a/explorations/views/ComponentWithData.vue b/playground/views/ComponentWithData.vue similarity index 100% rename from explorations/views/ComponentWithData.vue rename to playground/views/ComponentWithData.vue diff --git a/explorations/views/Generic.vue b/playground/views/Generic.vue similarity index 100% rename from explorations/views/Generic.vue rename to playground/views/Generic.vue diff --git a/explorations/views/GuardedWithLeave.vue b/playground/views/GuardedWithLeave.vue similarity index 100% rename from explorations/views/GuardedWithLeave.vue rename to playground/views/GuardedWithLeave.vue diff --git a/explorations/views/Home.vue b/playground/views/Home.vue similarity index 100% rename from explorations/views/Home.vue rename to playground/views/Home.vue diff --git a/explorations/views/LongView.vue b/playground/views/LongView.vue similarity index 100% rename from explorations/views/LongView.vue rename to playground/views/LongView.vue diff --git a/explorations/views/NotFound.vue b/playground/views/NotFound.vue similarity index 100% rename from explorations/views/NotFound.vue rename to playground/views/NotFound.vue diff --git a/explorations/views/User.vue b/playground/views/User.vue similarity index 100% rename from explorations/views/User.vue rename to playground/views/User.vue diff --git a/webpack.config.js b/webpack.config.js index d7986497..5f3fdd8b 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -19,7 +19,7 @@ module.exports = { publicPath: '/', filename: 'bundle.js', }, - entry: [resolve(__dirname, 'explorations/html5.ts')], + entry: [resolve(__dirname, 'playground/main.ts')], module: { rules: [ { @@ -46,7 +46,7 @@ module.exports = { plugins: [ new VueLoaderPlugin(), new HtmlWebpackPlugin({ - template: resolve(__dirname, 'explorations/html5.html'), + template: resolve(__dirname, 'playground/index.html'), }), new webpack.DefinePlugin({ 'process.env': {