Skip to content

Commit abd0648

Browse files
committed
feat: init
0 parents  commit abd0648

17 files changed

+7010
-0
lines changed

.browserslistrc

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
> 1%
2+
last 2 versions
3+
not dead

.gitignore

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
.DS_Store
2+
node_modules
3+
/dist
4+
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?

README.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Vue Macros + Vue 2 + Vue CLI demo
2+
3+
- Vue 2
4+
- Vue Macros
5+
- Vue CLI
6+
7+
[Documentation](https://vue-macros.sxzz.moe/)

babel.config.js

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module.exports = {
2+
presets: ["@vue/cli-plugin-babel/preset"],
3+
};

lint-staged.config.js

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module.exports = {
2+
"*.{js,jsx,vue,ts,tsx}": "vue-cli-service lint",
3+
};

package.json

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"name": "vue2-vue-cli",
3+
"version": "0.1.0",
4+
"private": true,
5+
"scripts": {
6+
"serve": "vue-cli-service serve",
7+
"build": "vue-cli-service build",
8+
"lint": "vue-cli-service lint"
9+
},
10+
"dependencies": {
11+
"core-js": "^3.26.1",
12+
"vue": "^2.7.14"
13+
},
14+
"devDependencies": {
15+
"@vue/cli-plugin-babel": "~5.0.8",
16+
"@vue/cli-plugin-typescript": "~5.0.8",
17+
"@vue/cli-service": "~5.0.8",
18+
"@vueuse/core": "^9.6.0",
19+
"typescript": "~4.9.4",
20+
"unplugin-vue-macros": "^1.1.1",
21+
"vue-template-compiler": "^2.7.14"
22+
}
23+
}

0 commit comments

Comments
 (0)