Skip to content

Commit d61816b

Browse files
committed
🔖 release version 1.3.0
1 parent f79d5bb commit d61816b

7 files changed

+75
-76
lines changed

CHANGELOG.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
1.2.5
1+
1.3.0 (2021-03-03)
22
------------------
33
* Add new style parameter to the rendered <input>
4+
* Update to React 17
45

56
1.2.4 (2018-12-12)
67
------------------

build/index.js

+2-14
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/index.js.LICENSE.txt

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
/*
2+
object-assign
3+
(c) Sindre Sorhus
4+
@license MIT
5+
*/
6+
7+
/** @license React v17.0.1
8+
* react.production.min.js
9+
*
10+
* Copyright (c) Facebook, Inc. and its affiliates.
11+
*
12+
* This source code is licensed under the MIT license found in the
13+
* LICENSE file in the root directory of this source tree.
14+
*/

package-lock.json

+54-56
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-range-step-input",
3-
"version": "1.2.4",
3+
"version": "1.3.0",
44
"description": "An <input type=range> that steps up and down on click.",
55
"main": "build/index.js",
66
"scripts": {
@@ -27,8 +27,8 @@
2727
},
2828
"homepage": "https://github.com/nikolas/react-range-step-input#readme",
2929
"peerDependencies": {
30-
"react": "^16.5.2",
31-
"react-dom": "^16.5.2"
30+
"react": "^17.0.1",
31+
"react-dom": "^17.0.1"
3232
},
3333
"devDependencies": {
3434
"@babel/cli": "^7.1.2",

webpack.config.docs.js

-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ module.exports = {
1616
test: /\.(js|jsx)$/,
1717
include: path.resolve(__dirname, 'docs'),
1818
exclude: /node_modules/,
19-
loader: 'babel-loader',
2019
use: {
2120
loader: 'babel-loader',
2221
options: {

webpack.config.js

-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ module.exports = {
1717
test: /\.(js|jsx)$/,
1818
include: path.resolve(__dirname, 'lib'),
1919
exclude: /node_modules/,
20-
loader: 'babel-loader',
2120
use: {
2221
loader: 'babel-loader',
2322
options: {

0 commit comments

Comments
 (0)