Skip to content

Commit c61d764

Browse files
committed
Tidy up codes
1 parent c6b565c commit c61d764

File tree

3 files changed

+33
-10
lines changed

3 files changed

+33
-10
lines changed

.gitignore

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
.DS_Store
2+
node_modules
3+
package-lock.json
4+
/dist
5+
6+
# local env files
7+
.env.local
8+
.env.*.local
9+
10+
# Log files
11+
npm-debug.log*
12+
yarn-debug.log*
13+
yarn-error.log*
14+
pnpm-debug.log*
15+
16+
# Editor directories and files
17+
.idea
18+
.vscode
19+
*.suo
20+
*.ntvs*
21+
*.njsproj
22+
*.sln
23+
*.sw?

LICENSE

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
MIT License
22

3+
Copyright (c) 2021 Star Inc. (https://starinc.xyz)
34
Copyright (c) 2018 AzWebPlus
45

56
Permission is hereby granted, free of charge, to any person obtaining a copy

package.json

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,18 @@
11
{
2-
"name": "vue-cli-plugin-axios",
3-
"version": "0.0.4",
2+
"name": "vue-cli-plugin-axios-x",
43
"description": "Vue-cli-3 plugin: axios",
4+
"version": "0.1.0",
5+
"author": "Star Inc.",
6+
"license": "MIT",
57
"main": "index.js",
68
"scripts": {},
79
"keywords": [
8-
"Axios",
9-
"axios",
10-
"vue-axios",
1110
"vue",
1211
"axios",
13-
"vue",
14-
"plugin",
15-
"axios"
12+
"vue-axios",
13+
"plugin"
1614
],
17-
"author": "Canh Kieu <minhcanhdn0704@gmail.com>",
18-
"license": "MIT"
15+
"devDependencies": {
16+
"vue": "^2.6.14"
17+
}
1918
}

0 commit comments

Comments
 (0)