Skip to content

Commit

Permalink
v0.6.4
Browse files Browse the repository at this point in the history
  • Loading branch information
nealus committed Dec 15, 2021
1 parent 1fdd72e commit c3fc3ab
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
4 changes: 4 additions & 0 deletions ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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",
Expand Down

0 comments on commit c3fc3ab

Please sign in to comment.