@dbx-tools/ui-branding 0.3.37 → 0.3.40

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
@@ -3,7 +3,7 @@
3
3
  "repository": {
4
4
  "type": "git",
5
5
  "url": "git+https://github.com/reggie-db/dbx-tools.git",
6
- "directory": "workspaces/ui/branding"
6
+ "directory": "packages/ui/branding"
7
7
  },
8
8
  "devDependencies": {
9
9
  "@types/node": "^24.6.0",
@@ -15,15 +15,13 @@
15
15
  "dependencies": {
16
16
  "react": "^19.2.4",
17
17
  "react-dom": "^19.2.4",
18
- "@dbx-tools/shared-core": "0.3.37"
18
+ "@dbx-tools/shared-core": "0.3.40"
19
19
  },
20
- "main": "index.ts",
21
20
  "license": "UNLICENSED",
22
21
  "publishConfig": {
23
22
  "access": "public"
24
23
  },
25
- "version": "0.3.37",
26
- "types": "index.ts",
24
+ "version": "0.3.40",
27
25
  "type": "module",
28
26
  "exports": {
29
27
  "./react": "./src/react/index.ts",
@@ -37,6 +35,10 @@
37
35
  "./assets/logo-dark.svg": "./src/generated/logo-dark.svg",
38
36
  "./package.json": "./package.json"
39
37
  },
38
+ "files": [
39
+ "index.ts",
40
+ "src"
41
+ ],
40
42
  "dbxToolsConfig": {
41
43
  "tags": [
42
44
  "ui"
package/.projen/deps.json DELETED
@@ -1,44 +0,0 @@
1
- {
2
- "dependencies": [
3
- {
4
- "name": "@types/node",
5
- "version": "^24.6.0",
6
- "type": "build"
7
- },
8
- {
9
- "name": "@types/react-dom",
10
- "version": "catalog:",
11
- "type": "build"
12
- },
13
- {
14
- "name": "@types/react",
15
- "version": "catalog:",
16
- "type": "build"
17
- },
18
- {
19
- "name": "tsx",
20
- "version": "^4.23.0",
21
- "type": "build"
22
- },
23
- {
24
- "name": "typescript",
25
- "type": "build"
26
- },
27
- {
28
- "name": "@dbx-tools/shared-core",
29
- "version": "workspace:*",
30
- "type": "runtime"
31
- },
32
- {
33
- "name": "react-dom",
34
- "version": "catalog:",
35
- "type": "runtime"
36
- },
37
- {
38
- "name": "react",
39
- "version": "catalog:",
40
- "type": "runtime"
41
- }
42
- ],
43
- "//": "~~ Generated by projen. To modify, edit .projenrc.js and run \"pnpm exec projen\"."
44
- }
@@ -1,11 +0,0 @@
1
- {
2
- "files": [
3
- ".projen/deps.json",
4
- ".projen/files.json",
5
- ".projen/tasks.json",
6
- "package.json",
7
- "test/tsconfig.json",
8
- "tsconfig.json"
9
- ],
10
- "//": "~~ Generated by projen. To modify, edit .projenrc.js and run \"pnpm exec projen\"."
11
- }
@@ -1,126 +0,0 @@
1
- {
2
- "manifestVersion": 3,
3
- "env": {
4
- "PATH": "$(pnpm -c exec \"node --print process.env.PATH\")"
5
- },
6
- "tasks": {
7
- "build": {
8
- "name": "build",
9
- "description": "Full release build",
10
- "steps": [
11
- {
12
- "spawn": "pre-compile"
13
- },
14
- {
15
- "spawn": "compile"
16
- },
17
- {
18
- "spawn": "post-compile"
19
- },
20
- {
21
- "spawn": "test"
22
- },
23
- {
24
- "spawn": "package"
25
- }
26
- ]
27
- },
28
- "compile": {
29
- "name": "compile",
30
- "description": "Only compile",
31
- "steps": [
32
- {
33
- "execArgs": [
34
- "tsc",
35
- "--build"
36
- ]
37
- }
38
- ]
39
- },
40
- "default": {
41
- "name": "default",
42
- "description": "Synthesize project files",
43
- "steps": [
44
- {
45
- "exec": "pnpm exec projen default",
46
- "cwd": "../../.."
47
- }
48
- ]
49
- },
50
- "install": {
51
- "name": "install",
52
- "description": "Install project dependencies and update lockfile (non-frozen)",
53
- "steps": [
54
- {
55
- "exec": "pnpm i --no-frozen-lockfile"
56
- }
57
- ]
58
- },
59
- "install:ci": {
60
- "name": "install:ci",
61
- "description": "Install project dependencies using frozen lockfile",
62
- "steps": [
63
- {
64
- "exec": "pnpm i --frozen-lockfile"
65
- }
66
- ]
67
- },
68
- "package": {
69
- "name": "package",
70
- "description": "Creates the distribution package",
71
- "steps": [
72
- {
73
- "execArgs": [
74
- "mkdir",
75
- "-p",
76
- "dist/js"
77
- ]
78
- },
79
- {
80
- "execArgs": [
81
- "pnpm",
82
- "pack",
83
- "--pack-destination",
84
- "dist/js"
85
- ]
86
- }
87
- ]
88
- },
89
- "post-compile": {
90
- "name": "post-compile",
91
- "description": "Runs after successful compilation"
92
- },
93
- "pre-compile": {
94
- "name": "pre-compile",
95
- "description": "Prepare the project for compilation",
96
- "steps": [
97
- {
98
- "exec": "node ../../../branding/generate-package-assets.mjs"
99
- }
100
- ]
101
- },
102
- "test": {
103
- "name": "test",
104
- "description": "Run tests",
105
- "steps": [
106
- {
107
- "exec": "tsx --test 'test/**/*.test.ts'"
108
- }
109
- ]
110
- },
111
- "watch": {
112
- "name": "watch",
113
- "description": "Watch & compile in the background",
114
- "steps": [
115
- {
116
- "execArgs": [
117
- "tsc",
118
- "--build",
119
- "-w"
120
- ]
121
- }
122
- ]
123
- }
124
- },
125
- "//": "~~ Generated by projen. To modify, edit .projenrc.js and run \"pnpm exec projen\"."
126
- }
@@ -1,14 +0,0 @@
1
- // ~~ Generated by projen. To modify, edit .projenrc.js and run "pnpm exec projen".
2
- {
3
- "extends": "../tsconfig.json",
4
- "compilerOptions": {
5
- "noEmit": true,
6
- "rootDir": ".."
7
- },
8
- "include": [
9
- "**/*.ts"
10
- ],
11
- "exclude": [
12
- "node_modules"
13
- ]
14
- }
package/tsconfig.json DELETED
@@ -1,43 +0,0 @@
1
- // ~~ Generated by projen. To modify, edit .projenrc.js and run "pnpm exec projen".
2
- {
3
- "compilerOptions": {
4
- "rootDir": "src",
5
- "outDir": "lib",
6
- "alwaysStrict": true,
7
- "declaration": true,
8
- "esModuleInterop": true,
9
- "experimentalDecorators": true,
10
- "inlineSourceMap": true,
11
- "inlineSources": true,
12
- "lib": [
13
- "ES2022",
14
- "DOM",
15
- "DOM.Iterable"
16
- ],
17
- "module": "ESNext",
18
- "noEmitOnError": false,
19
- "noFallthroughCasesInSwitch": true,
20
- "noImplicitAny": true,
21
- "noImplicitReturns": true,
22
- "noImplicitThis": true,
23
- "noUnusedLocals": true,
24
- "noUnusedParameters": true,
25
- "resolveJsonModule": true,
26
- "strict": true,
27
- "strictNullChecks": true,
28
- "strictPropertyInitialization": true,
29
- "stripInternal": true,
30
- "target": "ES2022",
31
- "types": [],
32
- "moduleResolution": "bundler",
33
- "skipLibCheck": true,
34
- "jsx": "react-jsx"
35
- },
36
- "include": [
37
- "src/**/*.ts",
38
- "src/**/*.tsx"
39
- ],
40
- "exclude": [
41
- "node_modules"
42
- ]
43
- }