@ganpatiinfo/gids-core-web 6.0.0 → 7.0.0
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 +11 -10
- package/scriptUtils.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ganpatiinfo/gids-core-web",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "7.0.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "This is a core web package contains html components",
|
|
6
6
|
"homepage": "https://ganpatiinfosystem.vercel.app/",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"test:local": "jest --watch",
|
|
34
34
|
"generate": "stencil generate",
|
|
35
35
|
"storybook": "storybook dev --config-dir .storybook-dev -p 6006",
|
|
36
|
-
"build-site": "storybook build -o ../../site/
|
|
36
|
+
"build-site": "storybook build -o ../../site/dist/workshop/gids-core-web/",
|
|
37
37
|
"size": "size-limit",
|
|
38
38
|
"release:manually": "npm run build && npm publish --access public"
|
|
39
39
|
},
|
|
@@ -166,24 +166,24 @@
|
|
|
166
166
|
}
|
|
167
167
|
},
|
|
168
168
|
"peerDependencies": {
|
|
169
|
-
"@ganpatiinfo/gids-web-theme-interface": "^
|
|
169
|
+
"@ganpatiinfo/gids-web-theme-interface": "^4.0.0"
|
|
170
170
|
},
|
|
171
171
|
"dependencies": {
|
|
172
172
|
"@floating-ui/dom": "1.7.6",
|
|
173
173
|
"clsx": "^2.1.1",
|
|
174
|
-
"@ganpatiinfo/gids-core-shared": "^
|
|
175
|
-
"@ganpatiinfo/gids-web-shared": "^
|
|
174
|
+
"@ganpatiinfo/gids-core-shared": "^7.0.0",
|
|
175
|
+
"@ganpatiinfo/gids-web-shared": "^7.0.0",
|
|
176
176
|
"composed-offset-position": "^0.0.6"
|
|
177
177
|
},
|
|
178
178
|
"devDependencies": {
|
|
179
179
|
"@custom-elements-manifest/analyzer": "^0.11.0",
|
|
180
180
|
"@fontsource/inter": "^5.2.8",
|
|
181
181
|
"@fontsource/libre-caslon-text": "^5.2.7",
|
|
182
|
-
"@ganpatiinfo/gids-liquid-renderer": "^
|
|
183
|
-
"@ganpatiinfo/gids-storybook-theme": "^
|
|
184
|
-
"@ganpatiinfo/gids-storybook-utilities": "^
|
|
185
|
-
"@ganpatiinfo/gids-web-dom-reference": "^
|
|
186
|
-
"@ganpatiinfo/gids-web-theme-ganpatiinfo": "^
|
|
182
|
+
"@ganpatiinfo/gids-liquid-renderer": "^4.0.0",
|
|
183
|
+
"@ganpatiinfo/gids-storybook-theme": "^6.0.0",
|
|
184
|
+
"@ganpatiinfo/gids-storybook-utilities": "^4.0.0",
|
|
185
|
+
"@ganpatiinfo/gids-web-dom-reference": "^7.0.0",
|
|
186
|
+
"@ganpatiinfo/gids-web-theme-ganpatiinfo": "^5.0.0",
|
|
187
187
|
"@jest/globals": "^30.2.0",
|
|
188
188
|
"@stencil/core": "^4.43.2",
|
|
189
189
|
"@stencil/react-output-target": "^1.4.2",
|
|
@@ -194,6 +194,7 @@
|
|
|
194
194
|
"@types/jest": "^30.0.0",
|
|
195
195
|
"jest": "^30.3.0",
|
|
196
196
|
"jest-stencil-runner": "^0.0.19",
|
|
197
|
+
"lit-html": "^3.3.2",
|
|
197
198
|
"puppeteer": "^24.39.0",
|
|
198
199
|
"sass": "^1.94.0",
|
|
199
200
|
"storybook": "^10.2.17",
|
package/scriptUtils.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { createOrUpdateSymlinkDir } from '@ganpatiinfo/gids-web-shared/scriptUtils';
|
|
1
|
+
import { createOrUpdateSymlinkDir } from '@ganpatiinfo/gids-web-shared/scriptUtils.js';
|
|
2
2
|
import { cssPath } from './distPaths.js';
|
|
3
3
|
|
|
4
4
|
export async function createCoreWebCssSymlink(symlinkPath) {
|