Skip to content

Commit 39b80ec

Browse files
committed
2.1.12
1 parent a831bbd commit 39b80ec

File tree

5 files changed

+9
-7
lines changed

5 files changed

+9
-7
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
# Changelog
2+
- 2.1.12
3+
- Added sandbox with vanilla widgets and without TS
24
- 2.1.11
35
- Minor fix for some/not JsonLogic operators can be potentially used for array types
46
- 2.1.10

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,12 @@ Using awesome [Ant Design](https://ant.design/) v4 for widgets
3939

4040

4141
## Getting started
42-
Install: `npm i react-awesome-query-builder` (`antd`, `typescript` are optional)
42+
Install: `npm i react-awesome-query-builder` (packages `antd`, `typescript` are optional)
4343

4444
See [basic usage](#usage) and [API](#api) below.
4545

4646
Demo apps:
47-
- [`npm run`](https://github.com/ukrbublik/react-awesome-query-builder/tree/master/examples) - demo app with hot reload of demo code and local library code, uses TS, uses complex config to demonstrate anvanced usage.
47+
- [`npm start`](https://github.com/ukrbublik/react-awesome-query-builder/tree/master/examples) - demo app with hot reload of demo code and local library code, uses TS, uses complex config to demonstrate anvanced usage.
4848
- [`npm run sandbox_ts`](https://github.com/ukrbublik/react-awesome-query-builder/tree/master/sandbox) - demo app with hot reload of only demo code (uses latest version of library from npm), uses TS, uses AntDesign widgets.
4949
- [`npm run sandbox_js`](https://github.com/ukrbublik/react-awesome-query-builder/tree/master/sandbox_simple) - demo app with hot reload of only demo code (uses latest version of library from npm), not uses TS, uses vanilla widgets.
5050

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-awesome-query-builder",
3-
"version": "2.1.11",
3+
"version": "2.1.12",
44
"description": "User-friendly query builder for React. Demo: https://ukrbublik.github.io/react-awesome-query-builder",
55
"keywords": [
66
"reactjs",
@@ -25,8 +25,8 @@
2525
"sandbox_js": "cd sandbox_simple && npm i && npm start",
2626
"start": "npm run examples",
2727
"test": "karma start karma.conf.js",
28-
"lint-fix": "./node_modules/.bin/eslint --ext .jsx --ext .js --ext .tsx --fix ./modules/ ./sandbox/ ./examples/ ./tests/",
29-
"lint": "./node_modules/.bin/eslint --ext .jsx --ext .js --ext .tsx ./modules/ ./sandbox/ ./examples/ ./tests/"
28+
"lint-fix": "./node_modules/.bin/eslint --ext .jsx --ext .js --ext .tsx --fix ./modules/ ./sandbox/ ./sandbox_simple/ ./examples/ ./tests/",
29+
"lint": "./node_modules/.bin/eslint --ext .jsx --ext .js --ext .tsx ./modules/ ./sandbox/ ./sandbox_simple/ ./examples/ ./tests/"
3030
},
3131
"readme": "README.md",
3232
"repository": {

sandbox/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"@types/react-dom": "^16.9.7",
2323
"antd": ">=4.0.0 <4.5.0",
2424
"react": "^16.4.1",
25-
"react-awesome-query-builder": "^2.1.11",
25+
"react-awesome-query-builder": "^2.1.12",
2626
"react-dom": "^16.4.1",
2727
"react-scripts": "3.0.1",
2828
"typescript": "^3.8.3"

sandbox_simple/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"homepage": "https://ukrbublik.github.io/react-awesome-query-builder/",
1919
"dependencies": {
2020
"react": "^16.4.1",
21-
"react-awesome-query-builder": "^2.1.11",
21+
"react-awesome-query-builder": "^2.1.12",
2222
"react-dom": "^16.4.1",
2323
"react-scripts": "3.0.1"
2424
},

0 commit comments

Comments
 (0)