Skip to content

Commit 064f6f6

Browse files
author
zhangxixi
committed
feat: 源码解析
0 parents  commit 064f6f6

File tree

200 files changed

+57772
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

200 files changed

+57772
-0
lines changed

.babelrc

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"presets": [
3+
["env", { "modules": false }]
4+
]
5+
}

.circleci/config.yml

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
version: 2
2+
jobs:
3+
build:
4+
docker:
5+
# specify the version you desire here
6+
- image: vuejs/ci
7+
8+
working_directory: ~/repo
9+
10+
steps:
11+
- checkout
12+
13+
# Download and cache dependencies
14+
- restore_cache:
15+
keys:
16+
- v1-dependencies-{{ checksum "yarn.lock" }}
17+
# fallback to using the latest cache if no exact match is found
18+
- v1-dependencies-
19+
20+
- run: yarn install
21+
22+
- save_cache:
23+
paths:
24+
- node_modules
25+
- ~/.cache/yarn
26+
key: v1-dependencies-{{ checksum "yarn.lock" }}
27+
28+
# run tests!
29+
- run: yarn test

.eslintrc.js

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
module.exports = {
2+
root: true,
3+
extends: ['plugin:vue-libs/recommended']
4+
}

.github/ISSUE_TEMPLATE.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<!--
2+
IMPORTANT: Please use the following link to create a new issue:
3+
4+
https://new-issue.vuejs.org/?repo=vuejs/vue-loader
5+
6+
If your issue was not created using the app above, it will be closed immediately.
7+
-->

.gitignore

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
.DS_Store
2+
exploration
3+
node_modules
4+
*.log
5+
example/dist
6+
docs/.vuepress/dist
7+
test/.cache

.npmignore

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
example
2+
test
3+
*.yml
4+
*.log
5+
yarn.lock
6+
tsconfig.json
7+
docs

.vscode/launch.json

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"type": "chrome",
6+
"request": "launch",
7+
"name": "vuejs: chrome",
8+
"url": "http://localhost:8080",
9+
"webRoot": "${workspaceFolder}",
10+
"breakOnLoad": true,
11+
"sourceMaps": true
12+
// "sourceMapPathOverrides": {
13+
// "webpack:///./src/*": "${webRoot}/*"
14+
// }
15+
}
16+
]
17+
}

0 commit comments

Comments
 (0)