Skip to content

Commit

Permalink
Fix paths in dist (v1.0.7)
Browse files Browse the repository at this point in the history
  • Loading branch information
kim366 committed May 23, 2018
1 parent 08bcf1b commit c5cb76d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ or locally as shown in the example below.
Load script

```html
<script src="https://cdn.jsdelivr.net/npm/[email protected].5"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected].7"></script>
```

or

```html
<script src="https://unpkg.com/[email protected].5/dist/vue-details.min.js"></script>
<script src="https://unpkg.com/[email protected].7/dist/vue-details.min.js"></script>
```

Register component
Expand Down
2 changes: 1 addition & 1 deletion dist/vue-details.common.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
module.exports = require('@/src/vue-details.js');
module.exports = require('../src/vue-details.js');
2 changes: 1 addition & 1 deletion dist/vue-details.esm.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export require('@/src/vue-details');
export default require('../src/vue-details.js');
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vue-details",
"version": "1.0.5",
"version": "1.0.7",
"description": "Proper support for `<details>` tag in Vue.js including `v-model` attribute",
"main": "dist/vue-details.common.js",
"module": "dist/vue-details.esm.js",
Expand Down

0 comments on commit c5cb76d

Please sign in to comment.