@arminmajerie/dockview-solid 4.5.5 → 4.5.7

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arminmajerie/dockview-solid",
3
- "version": "4.5.5",
3
+ "version": "4.5.7",
4
4
  "description": "Zero dependency layout manager supporting tabs, grids and splitviews (SolidJS version)",
5
5
  "keywords": [
6
6
  "solid",
@@ -30,12 +30,12 @@
30
30
  },
31
31
  "license": "MIT",
32
32
  "author": "https://github.com/arminmajerie",
33
- "main": "./dist/index.js",
34
- "module": "./dist/index.js",
33
+ "main": "./dist/index.mjs",
34
+ "module": "./dist/index.mjs",
35
35
  "types": "./dist/index.d.ts",
36
36
  "exports": {
37
37
  ".": {
38
- "import": "./dist/index.js",
38
+ "import": "./dist/index.mjs",
39
39
  "require": "./dist/index.js"
40
40
  }
41
41
  },
@@ -44,12 +44,14 @@
44
44
  "README.md"
45
45
  ],
46
46
  "scripts": {
47
- "build": "tsup src/index.ts --format esm,cjs --dts --out-dir dist",
48
- "clean": "rimraf dist",
49
- "rebuild": "npm run clean && npm run build"
47
+ "clean": "rimraf dist/ .build/ .tsup",
48
+ "build": "npm run clean && vite build && node scripts/copy-css.js",
49
+ "lint": "eslint src --ext .ts,.tsx",
50
+ "prepublishOnly": "npm run build",
51
+ "rebuild": "npm run build"
50
52
  },
51
53
  "dependencies": {
52
- "@arminmajerie/dockview": "^4.5.3"
54
+ "@arminmajerie/dockview": "^4.5.7"
53
55
  },
54
56
  "peerDependencies": {
55
57
  "solid-js": "^1.8.0"
package/dist/index.d.mts DELETED
@@ -1 +0,0 @@
1
- export * from '@arminmajerie/dockview';
package/dist/index.d.ts DELETED
@@ -1 +0,0 @@
1
- export * from '@arminmajerie/dockview';