From c3fc3abb764c7c67fcf56766d1157de3d9906745 Mon Sep 17 00:00:00 2001 From: nmd Date: Wed, 15 Dec 2021 15:57:01 +0000 Subject: [PATCH] v0.6.4 --- ChangeLog.txt | 4 ++++ README.md | 2 +- package.json | 5 +++-- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/ChangeLog.txt b/ChangeLog.txt index 02360ecc..6398d4f3 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -1,3 +1,7 @@ +0.6.4 +Code tidy +Updated dependencies + 0.6.3 Changed to using named rather than default import/exports, this will require changing top level imports diff --git a/README.md b/README.md index f9245944..93ba45c0 100755 --- a/README.md +++ b/README.md @@ -594,7 +594,7 @@ Compile the project and run the examples: yarn start ``` -Open your browser at http://localhost:8080/examples/ to show the examples directory, click on the examples to run them. +Open your browser at http://localhost:8081/examples/ to show the examples directory, click on the examples to run them. The 'yarn start' command will watch for changes to flexlayout and example source, so you can make changes to the code and then refresh the browser to see the result. diff --git a/package.json b/package.json index a9b54818..894ac6e7 100755 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "flexlayout-react", - "version": "0.6.3", + "version": "0.6.4", "description": "A multi-tab docking layout manager", "main": "lib/index.js", "types": "./declarations/index.d.ts", @@ -20,10 +20,11 @@ ], "scripts": { "start": "webpack serve", - "build": "npm run css && npm run test && npm run doc && npm run build:commonjs && npm run build:umd && npm run build:umd:min", + "build": "npm run css && npm run test && npm run doc && npm run build:demo && npm run build:commonjs && npm run build:umd && npm run build:umd:min", "build:commonjs": "tsc -p tsconfig2.json", "build:umd": "webpack --mode=development --config webpack_build.config.js", "build:umd:min": "webpack --mode=production --config webpack_build_min.config.js", + "build:demo": "webpack", "lint:eslint": "eslint src/*", "doc": "typedoc --out typedoc --exclude \"**/examples/**/*.tsx\" --excludeInternal --disableSources --excludePrivate --excludeProtected --readme none ./src", "css": "sass style/gray.scss style/gray.css && sass style/light.scss style/light.css && sass style/light.scss test/style/light.css && sass style/dark.scss style/dark.css",