@inkdropapp/theme-dev-helpers 0.3.0 → 0.3.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/bun.lockb CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inkdropapp/theme-dev-helpers",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "type": "module",
5
5
  "description": "A helper module for creating themes for Inkdrop",
6
6
  "keywords": [
@@ -23,8 +23,6 @@
23
23
  "dependencies": {
24
24
  "@inkdropapp/base-ui-theme": "^0.3.1",
25
25
  "@inkdropapp/css": "^0.4.2",
26
- "@types/react": "^18.3.10",
27
- "@types/react-dom": "^18.3.0",
28
26
  "@vitejs/plugin-react": "^4.3.2",
29
27
  "commander": "^12.1.0",
30
28
  "puppeteer": "^23.5.3",
@@ -32,10 +30,12 @@
32
30
  "react-dom": "^18.3.1",
33
31
  "react-router-dom": "^6.27.0",
34
32
  "typescript": "^5.5.3",
35
- "typescript-eslint": "^8.7.0",
36
33
  "vite": "^5.4.8"
37
34
  },
38
35
  "devDependencies": {
36
+ "@types/react": "^18.3.10",
37
+ "@types/react-dom": "^18.3.0",
38
+ "typescript-eslint": "^8.7.0",
39
39
  "prettier": "^3.3.3"
40
40
  }
41
41
  }
package/tsconfig.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "compilerOptions": {
3
- "target": "ES2020",
3
+ "target": "ESNext",
4
4
  "useDefineForClassFields": true,
5
5
  "lib": [
6
6
  "ES2020",
@@ -10,7 +10,7 @@
10
10
  "module": "ESNext",
11
11
  "skipLibCheck": true,
12
12
  /* Bundler mode */
13
- "moduleResolution": "bundler",
13
+ "moduleResolution": "Node",
14
14
  "allowImportingTsExtensions": true,
15
15
  "isolatedModules": true,
16
16
  "moduleDetection": "force",
package/vite.config.ts CHANGED
@@ -2,7 +2,7 @@ import { fileURLToPath, URL } from 'url'
2
2
  import { defineConfig } from 'vite'
3
3
  import react from '@vitejs/plugin-react'
4
4
 
5
- const baseProjectPath = process.env.BASE_PROJECT_PATH || fileURLToPath(new URL('../..', import.meta.url))
5
+ const baseProjectPath = process.env.BASE_PROJECT_PATH || fileURLToPath(new URL('../../..', import.meta.url))
6
6
  console.log('Base project path:', baseProjectPath)
7
7
 
8
8
  // https://vitejs.dev/config/