Skip to content

Commit

Permalink
更新最新的版本
Browse files Browse the repository at this point in the history
  • Loading branch information
jamielhf committed Mar 30, 2018
1 parent ddfafbd commit f023195
Show file tree
Hide file tree
Showing 56 changed files with 13,010 additions and 1,522 deletions.
15 changes: 15 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
.DS_Store
node_modules/
/dist/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
/test/unit/coverage/

# Editor directories and files
.idea
.vscode
*.suo
*.ntvs*
*.njsproj
*.sln
18 changes: 14 additions & 4 deletions calendar/.babelrc
Original file line number Diff line number Diff line change
@@ -1,7 +1,17 @@
{
"presets": [
["latest", {
"es2015": { "modules": false }
}]
]
["env", {
"modules": false,
"targets": {
"browsers": ["> 1%", "last 2 versions", "not ie <= 8"]
}
}],
"stage-2"
],
"plugins": ["transform-vue-jsx", "transform-runtime"],
"env": {
"test": {
"presets": ["env", "stage-2"]
}
}
}
9 changes: 9 additions & 0 deletions calendar/.editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
root = true

[*]
charset = utf-8
indent_style = space
indent_size = 2
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
16 changes: 13 additions & 3 deletions calendar/.gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
.DS_Store
node_modules/
.idea/
npm-debug.log
yarn-error.log
/dist/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
/test/unit/coverage/

# Editor directories and files
.idea
.vscode
*.suo
*.ntvs*
*.njsproj
*.sln
8 changes: 5 additions & 3 deletions calendar/.idea/calendar.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 0 additions & 3 deletions calendar/.idea/copyright/profiles_settings.xml

This file was deleted.

6 changes: 0 additions & 6 deletions calendar/.idea/encodings.xml

This file was deleted.

6 changes: 0 additions & 6 deletions calendar/.idea/jsLibraryMappings.xml

This file was deleted.

4 changes: 0 additions & 4 deletions calendar/.idea/watcherTasks.xml

This file was deleted.

Loading

0 comments on commit f023195

Please sign in to comment.