Skip to content

Commit 074eb6a

Browse files
committed
Merge branch 'hotfix/1.0.2'
2 parents edea1f4 + 2edcb18 commit 074eb6a

Some content is hidden

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

96 files changed

+1660
-1113
lines changed
File renamed without changes.

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
path_to_write_report: ./codecov_report.txt
3434
verbose: true
3535

36-
- run: ls -al && cp readme.md dist/ && cp package.json dist/ && cd dist/ && npm publish && rm package.json readme.md
36+
- run: cd dist && ls -al && npm publish
3737
env:
3838
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
3939

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ yarn-error.log*
2323

2424
# Build files
2525
dist/*.html
26+
dist/package.json
27+
dist/LICENSE
28+
dist/README.md
2629
demo/dist/
2730
docs/.vuepress/dist/
2831
coverage/

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
12
1+
14
File renamed without changes.

Slider.rfc.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Slider
2+
3+
> Demo : https://codepen.io/titouanmathis/pen/eYzxOdq?editors=1010
4+
5+
Simple interface to create sliders.
6+
7+
```js
8+
class Slider extends Base {}
9+
class SliderDrag extends Slider {}
10+
```
11+
12+
## Refs
13+
14+
- `items`
15+
- `progress`
16+
- ``
17+
18+

babel.config.js renamed to babel.config.cjs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,11 @@ module.exports = {
1010
plugins:
1111
process.env.NODE_TARGET === 'bundle'
1212
? ['@babel/plugin-proposal-class-properties']
13-
: ['@babel/plugin-transform-runtime', '@babel/plugin-proposal-class-properties'],
13+
: [
14+
'@babel/plugin-transform-runtime',
15+
'@babel/plugin-proposal-class-properties',
16+
'babel-plugin-add-import-extension',
17+
],
1418
parserOpts: {
1519
plugins: ['dynamicImport', 'classProperties'],
1620
},
File renamed without changes.

0 commit comments

Comments
 (0)