]> git.ipfire.org Git - thirdparty/vuejs/router.git/commitdiff
refactor: rename explorations into playground
authorEduardo San Martin Morote <posva13@gmail.com>
Fri, 24 Jan 2020 08:42:25 +0000 (09:42 +0100)
committerEduardo San Martin Morote <posva13@gmail.com>
Fri, 24 Jan 2020 08:42:25 +0000 (09:42 +0100)
16 files changed:
playground/App.vue [moved from explorations/App.vue with 100% similarity]
playground/index.html [moved from explorations/html5.html with 100% similarity]
playground/main.ts [moved from explorations/html5.ts with 100% similarity]
playground/router.ts [moved from explorations/router.ts with 100% similarity]
playground/scrollWaiter.ts [moved from explorations/scrollWaiter.ts with 100% similarity]
playground/shim.d.ts [moved from explorations/shim.d.ts with 100% similarity]
playground/store.ts [moved from explorations/store.ts with 100% similarity]
playground/tsconfig.json [moved from explorations/tsconfig.json with 100% similarity]
playground/views/ComponentWithData.vue [moved from explorations/views/ComponentWithData.vue with 100% similarity]
playground/views/Generic.vue [moved from explorations/views/Generic.vue with 100% similarity]
playground/views/GuardedWithLeave.vue [moved from explorations/views/GuardedWithLeave.vue with 100% similarity]
playground/views/Home.vue [moved from explorations/views/Home.vue with 100% similarity]
playground/views/LongView.vue [moved from explorations/views/LongView.vue with 100% similarity]
playground/views/NotFound.vue [moved from explorations/views/NotFound.vue with 100% similarity]
playground/views/User.vue [moved from explorations/views/User.vue with 100% similarity]
webpack.config.js

similarity index 100%
rename from explorations/App.vue
rename to playground/App.vue
similarity index 100%
rename from explorations/html5.ts
rename to playground/main.ts
similarity index 100%
rename from explorations/router.ts
rename to playground/router.ts
similarity index 100%
rename from explorations/shim.d.ts
rename to playground/shim.d.ts
similarity index 100%
rename from explorations/store.ts
rename to playground/store.ts
index d79864974891a9bc286f17a39ed470edcac88abb..5f3fdd8bbe75f21e7554ddb9590cac0cf1c27905 100644 (file)
@@ -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': {