@aigamo/hydrangean-diva 0.0.1-alpha.33 → 0.0.1-alpha.35
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/dist/features/media-player.play-queue/stores/PlayQueueStore.d.ts +0 -2
- package/dist/features/media-player.play-queue.abstractions/interfaces/IPlayQueueStore.d.ts +0 -1
- package/dist/features/media-player.player/interfaces/IMiniPlayerStore.d.ts +1 -0
- package/dist/features/media-player.player/stores/MiniPlayerStore.d.ts +2 -0
- package/dist/index.cjs.js +4 -4
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +121 -119
- package/dist/index.es.js.map +1 -1
- package/package.json +6 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aigamo/hydrangean-diva",
|
|
3
|
-
"version": "0.0.1-alpha.
|
|
3
|
+
"version": "0.0.1-alpha.35",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"dependencies": {
|
|
6
6
|
"@elastic/datemath": "^5.0.3",
|
|
@@ -24,8 +24,8 @@
|
|
|
24
24
|
"react-sortablejs": "^6.1.4",
|
|
25
25
|
"sortablejs": "^1.15.6",
|
|
26
26
|
"utility-types": "^3.11.0",
|
|
27
|
-
"@aigamo/nostalgic-diva": "1.16.
|
|
28
|
-
"@aigamo/route-sphere": "2.0.
|
|
27
|
+
"@aigamo/nostalgic-diva": "1.16.3",
|
|
28
|
+
"@aigamo/route-sphere": "2.0.8"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@eslint/compat": "^2.0.0",
|
|
@@ -76,7 +76,7 @@
|
|
|
76
76
|
"@tanstack/react-router-devtools": "^1.144.0",
|
|
77
77
|
"react": "^18.3.1",
|
|
78
78
|
"react-dom": "^18.3.1",
|
|
79
|
-
"@aigamo/route-sphere": "2.0.
|
|
79
|
+
"@aigamo/route-sphere": "2.0.8"
|
|
80
80
|
},
|
|
81
81
|
"files": [
|
|
82
82
|
"dist"
|
|
@@ -118,11 +118,11 @@
|
|
|
118
118
|
"url": "https://github.com/ycanardeau/hydrangean-diva/issues"
|
|
119
119
|
},
|
|
120
120
|
"scripts": {
|
|
121
|
-
"dev": "vite",
|
|
121
|
+
"dev": "vite --config vite.config.app.ts",
|
|
122
122
|
"build": "tsgo -b && vite build",
|
|
123
123
|
"build:app": "tsgo -b && vite build --config vite.config.app.ts",
|
|
124
124
|
"lint": "eslint .",
|
|
125
|
-
"preview": "vite preview",
|
|
125
|
+
"preview": "vite preview --config vite.config.app.ts",
|
|
126
126
|
"test": "vitest --environment=jsdom",
|
|
127
127
|
"generate-clients": "pnpm openapi-generator-cli generate -g typescript-fetch --additional-properties=legacyDiscriminatorBehavior=false -i /local/src/api/v1.json -o /local/src/api"
|
|
128
128
|
}
|