Skip to content

Commit

Permalink
Vue CLI updated to 4.0.4, Sass loader 8.0.0, Babel polyfill replaced …
Browse files Browse the repository at this point in the history
…with core-js import
  • Loading branch information
liborpansky committed Oct 21, 2019
1 parent 992e53d commit 13970a4
Show file tree
Hide file tree
Showing 7 changed files with 1,130 additions and 600 deletions.
4 changes: 2 additions & 2 deletions AspNetCoreVueStarter.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
<Copyright>MIT 2019 Software Ateliers</Copyright>
<AssemblyName>AspNetCoreVueStarter</AssemblyName>
<RootNamespace>AspNetCoreVueStarter</RootNamespace>
<Version>1.1.0</Version>
<AssemblyVersion>1.1.0.0</AssemblyVersion>
<Version>2.1.0</Version>
<AssemblyVersion>2.1.0.0</AssemblyVersion>
<FileVersion>1.1.0.0</FileVersion>
</PropertyGroup>

Expand Down
2 changes: 1 addition & 1 deletion ClientApp/babel.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module.exports = {
"presets": [
[
"@vue/app",
"@vue/cli-plugin-babel/preset",
{
"useBuiltIns": "entry"
}
Expand Down
1,691 changes: 1,110 additions & 581 deletions ClientApp/package-lock.json

Large diffs are not rendered by default.

22 changes: 11 additions & 11 deletions ClientApp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,31 +8,31 @@
"lint": "vue-cli-service lint"
},
"dependencies": {
"date-fns": "^2.4.1",
"core-js": "^3.1.2",
"date-fns": "^2.5.1",
"register-service-worker": "^1.6.2",
"vue": "^2.6.10",
"vue-class-component": "^7.1.0",
"vue-property-decorator": "^8.2.2",
"vue-property-decorator": "^8.3.0",
"vue-router": "^3.1.3",
"vuetify": "^2.1.4",
"vuetify": "^2.1.5",
"vuex": "^3.1.1",
"vuex-class": "^0.3.2"
},
"devDependencies": {
"@babel/polyfill": "^7.6.0",
"@mdi/font": "^4.5.95",
"@types/node": "^12.11.1",
"@vue/cli-plugin-babel": "^3.12.0",
"@vue/cli-plugin-pwa": "^3.12.0",
"@vue/cli-plugin-typescript": "^3.12.0",
"@vue/cli-service": "^3.12.0",
"@types/node": "^12.11.2",
"@vue/cli-plugin-babel": "^4.0.4",
"@vue/cli-plugin-pwa": "^4.0.4",
"@vue/cli-plugin-typescript": "^4.0.4",
"@vue/cli-service": "^4.0.4",
"axios": "^0.19.0",
"babel-plugin-transform-imports": "^2.0.0",
"sass": "^1.23.0",
"sass-loader": "^7.1.0",
"sass-loader": "^8.0.0",
"typescript": "^3.6.4",
"vue-cli-plugin-axios": "0.0.4",
"vue-cli-plugin-vuetify": "^1.0.1",
"vue-cli-plugin-vuetify": "^1.1.1",
"vue-template-compiler": "^2.6.10",
"vuetify-loader": "^1.3.0"
}
Expand Down
3 changes: 2 additions & 1 deletion ClientApp/src/main.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import '@babel/polyfill';
import 'core-js/stable';
import 'regenerator-runtime/runtime';
import Vue from 'vue';
import './plugins/axios';
import vuetify from './plugins/vuetify';
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ASP.NET Core Vue Starter

The repository contains an ASP.&#8203;NET Core + Vue.js starter template. The template is created by Vue CLI 3.0 with a new plugin based architecture allowing developers to interactively scaffold a new project with just a one command.
The repository contains an ASP.&#8203;NET Core + Vue.js starter template. The template runs on ASP.NET Core 3.0 and is created by Vue CLI 4.0 with a new plugin based architecture allowing developers to interactively scaffold a new project with just a one command.

Original article how to create the starter template is available [here](https://medium.com/software-ateliers/asp-net-core-vue-template-with-custom-configuration-using-cli-3-0-8288e18ae80b).

Expand Down Expand Up @@ -32,7 +32,7 @@ Original article how to create the starter template is available [here](https://
* Web.API
* Vue CLI and JavaScript Services middlewares to integrate with client app

**Vue.js with CLI 3.0 supporting optional integrations:**
**Vue.js with CLI 4.0 supporting optional integrations:**

* TypeScript
* Progressive Web App
Expand All @@ -47,7 +47,7 @@ Original article how to create the starter template is available [here](https://

* [.NET Core](https://www.microsoft.com/net/download/windows) >= 3.0
* [NodeJS](https://nodejs.org/) >= 8.9
* [Vue CLI](https://cli.vuejs.org/) >= 3.0
* [Vue CLI](https://cli.vuejs.org/) >= 4.0
* Your favourite editor (I prefer [VS Code](https://code.visualstudio.com/)), or VS 2017/19

---
Expand Down
2 changes: 1 addition & 1 deletion SoftwareAteliers.AspNetCoreVueStarter.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>SoftwareAteliers.AspNetCoreVueStarter</id>
<version>2.0.0</version>
<version>2.1.0</version>
<description>
ASP.NET Core + Vue.js starter project
</description>
Expand Down

0 comments on commit 13970a4

Please sign in to comment.