Skip to content

Commit

Permalink
Drop Babel transpiling, change build file names (#156)
Browse files Browse the repository at this point in the history
  • Loading branch information
FloEdelmann authored May 13, 2021
1 parent c42da1d commit 3817ba9
Show file tree
Hide file tree
Showing 13 changed files with 2,711 additions and 10,925 deletions.
3 changes: 0 additions & 3 deletions .browserslistrc

This file was deleted.

3 changes: 0 additions & 3 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,5 @@ module.exports = {

// using import is allowed, since webpack gets rid of it automatically
"no-es2015/no-import": "off"
},
parserOptions: {
parser: 'babel-eslint'
}
}
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ This is a Vue.js alternative to the original [embetty](https://github.com/heiseo

```js
import Vue from 'vue';
import EmbettyVue from 'embetty-vue'; // or 'embetty-vue/dist/embetty-vue.esm.js'
// or
import EmbettyVue from 'embetty-vue';

const Vue = require('vue');
const EmbettyVue = require('embetty-vue'); // or 'embetty-vue/dist/embetty-vue.common.js'
const { EmbettyVue } = require('embetty-vue');

Vue.use(EmbettyVue, {
// optional, but recommended
Expand All @@ -36,7 +36,7 @@ In your HTML head:
<link rel="stylesheet" type="text/css" href="dist/embetty-vue.min.css" />
<meta data-embetty-server="/path/to/embetty-server" /> <!-- without trailing slash -->
<script type="text/javascript" src="vue.js"></script>
<script type="text/javascript" src="dist/embetty-vue.min.js"></script>
<script type="text/javascript" src="dist/embetty-vue.browser.min.js"></script>
```

You can link to the files without `.min` for debugging.
Expand Down
1,082 changes: 1,082 additions & 0 deletions dist/embetty-vue.browser.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/embetty-vue.browser.min.js

Large diffs are not rendered by default.

1,074 changes: 1,074 additions & 0 deletions dist/embetty-vue.cjs

Large diffs are not rendered by default.

Loading

0 comments on commit 3817ba9

Please sign in to comment.