@aptre/flex-layout 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@aptre/flex-layout",
3
3
  "author": "Caplin Systems Ltd",
4
4
  "description": "A multi-tab docking layout manager",
5
- "version": "0.1.0",
5
+ "version": "0.1.1",
6
6
  "license": "ISC",
7
7
  "repository": {
8
8
  "type": "git",
@@ -22,11 +22,11 @@
22
22
  "reactjs",
23
23
  "react-dom"
24
24
  ],
25
- "main": "./dist/index.js",
26
- "module": "./dist/index.js",
25
+ "main": "./dist/index.mjs",
26
+ "module": "./dist/index.mjs",
27
27
  "types": "./declarations/index.d.ts",
28
28
  "exports": {
29
- ".": "./dist/index.js"
29
+ ".": "./dist/index.mjs"
30
30
  },
31
31
  "files": [
32
32
  "README.md",
@@ -40,7 +40,7 @@
40
40
  "scripts": {
41
41
  "build": "npm run build:style && npm run build:doc && npm run build:lib",
42
42
  "build:min": "npm run build:style && npm run build:doc && npm run build:lib:min",
43
- "build:lib": "esbuild --bundle --external:react --external:react-dom --format=esm --target=es2022 --platform=browser --outfile=./dist/index.js ./src/index.ts",
43
+ "build:lib": "rimraf ./dist && esbuild --bundle --external:react --external:react-dom --format=esm --target=es2022 --platform=browser --outfile=./dist/index.mjs ./src/index.ts",
44
44
  "build:lib:min": "npm run build:lib -- --minify",
45
45
  "build:doc": "typedoc --out typedoc --exclude \"**/examples/**/*.tsx\" --excludeInternal --disableSources --excludePrivate --excludeProtected --readme none ./src",
46
46
  "build:style": "sass style/underline.scss style/underline.css && sass style/gray.scss style/gray.css && sass style/light.scss style/light.css && sass style/dark.scss style/dark.css",
@@ -61,13 +61,14 @@
61
61
  "@types/react": "^18.0.5",
62
62
  "@types/react-dom": "^18.0.1",
63
63
  "esbuild": "^0.19.5",
64
- "prettier": "^2.6.2",
64
+ "prettier": "^3.0.0",
65
65
  "prismjs": "^1.28.0",
66
66
  "react": "^18.0.0",
67
67
  "react-dom": "^18.0.0",
68
68
  "react-scripts": "5.0.1",
69
+ "rimraf": "^5.0.5",
69
70
  "sass": "^1.50.0",
70
- "typedoc": "^0.24.4",
71
- "typescript": "^4.9.5"
71
+ "typedoc": "^0.25.0",
72
+ "typescript": "^5.0.0"
72
73
  }
73
74
  }
File without changes