Skip to content

Commit 5d64d43

Browse files
committed
feat: major refactor, cleanup and jest tests
1 parent 9dfb001 commit 5d64d43

Some content is hidden

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

61 files changed

+8592
-816
lines changed

.babelrc

+1-6
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
11
{
2-
"presets": ["@babel/preset-env"],
3-
"env": {
4-
"test": {
5-
"plugins": ["istanbul"]
6-
}
7-
}
2+
"presets": ["@babel/preset-env"]
83
}

.eslintrc

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"root": true,
3+
"parserOptions": {
4+
"parser": "babel-eslint",
5+
"sourceType": "module"
6+
},
7+
"extends": [
8+
"@nuxtjs"
9+
],
10+
"globals": {
11+
"Vue": "readable"
12+
}
13+
}

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -38,3 +38,7 @@ jspm_packages
3838

3939
# built code
4040
lib
41+
42+
# yarn
43+
yarn.lock
44+
yarn-error.log

README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -847,4 +847,6 @@ If this were not the case, you would have to instruct Babel to convert `default`
847847

848848
# Examples
849849

850-
To run the examples; clone this repository & run `npm install` in the root directory, and then run `npm run dev`. Head to http://localhost:8080.
850+
To run the examples; clone this repository & run `cd examples && npm install` in the root directory, and then run `npm run start`. Head to http://localhost:8080.
851+
852+
If you would like to help to develop vue-meta then run `npm install` both in the root and examples dir and run `npm run dev`

examples/.babelrc

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"presets": ["@babel/preset-env"]
3+
}

0 commit comments

Comments
 (0)