Skip to content

Commit d425607

Browse files
committed
Update dependencies to latest version. Closes #118
1 parent b7c270a commit d425607

File tree

4 files changed

+4675
-3362
lines changed

4 files changed

+4675
-3362
lines changed

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@ npm install --save jellies
1414

1515
Import it to your project. And use it accordingly on your Vue instance.
1616

17-
### Fully import
17+
### Import completely at once
18+
19+
If you only would like to try Jellies you may import it completely. However, it is not recommended for production since the whole package is quite large.
1820

1921
```javascript
2022
import Jellies from "jellies";
@@ -24,11 +26,11 @@ import Jellies from "jellies";
2426
Vue.use(Jellies);
2527
```
2628

27-
### On demand
29+
### On demand import
2830

29-
With the help of [babel-plugin-component](https://github.com/ElementUI/babel-plugin-component), we can import components we actually need, making the project smaller than otherwise.
31+
With the help of [babel-plugin-component](https://github.com/ElementUI/babel-plugin-component), we can import components we actually need, making our project smaller than otherwise.
3032

31-
First, install babel-plugin-component:
33+
First, install `babel-plugin-component`:
3234

3335
```javascript
3436
npm install babel-plugin-component -D

babel.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module.exports = {
22
presets: [
3-
'@vue/app'
3+
'@vue/cli-plugin-babel/preset'
44
]
55
}

0 commit comments

Comments
 (0)