Skip to content

Commit

Permalink
8.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
paranoidjk committed Aug 2, 2017
1 parent de3e5b0 commit caf5866
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 10 deletions.
17 changes: 9 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rc-slider",
"version": "8.3.0",
"version": "8.3.1",
"description": "Slider UI component for React",
"keywords": [
"react",
Expand All @@ -25,18 +25,19 @@
"license": "MIT",
"main": "./lib/index.js",
"module": "./es/index",
"entry": {
"rc-slider": [
"./assets/index.less",
"./src/index.js"
]
},
"style": "./assets/index.css",
"config": {
"port": 8005
"port": 8005,
"entry": {
"rc-slider": [
"./assets/index.less",
"./src/index.js"
]
}
},
"scripts": {
"build": "rc-tools run build",
"dist": "rc-tools run dist",
"gh-pages": "rc-tools run gh-pages",
"start": "rc-tools run server",
"compile": "rc-tools run compile --babel-runtime",
Expand Down
2 changes: 1 addition & 1 deletion tests/common/createSlider.test.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* eslint-disable max-len, no-undef */
import React from 'react';
import { mount } from 'enzyme';
import Slider from '../..';
import Slider from '../../src';
const { Range } = Slider;

const setWidth = (object, width) => {
Expand Down
2 changes: 1 addition & 1 deletion tests/common/marks.test.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* eslint-disable max-len, no-undef */
import React from 'react';
import { mount } from 'enzyme';
import Slider from '../..';
import Slider from '../../src';
const { Range } = Slider;

describe('marks', () => {
Expand Down

1 comment on commit caf5866

@paranoidjk
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

close #271

Please sign in to comment.