vite-plugin-react-shopify 2.2.6 → 2.2.8

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +1 -1
  2. package/package.json +12 -12
package/dist/index.d.ts CHANGED
@@ -409,4 +409,4 @@ interface SSGEntry {
409
409
  */
410
410
  declare const vitePluginShopify: (options?: Options) => Plugin[];
411
411
 
412
- export { type ArticleListSetting, type ArticleSetting, type AssertNoEmptyDefaults, type BlockDefinition, type BlogSetting, type CheckboxSetting, type CollectionListSetting, type CollectionSetting, type ColorBackgroundSetting, type ColorSchemeGroupSetting, type ColorSchemeRole, type ColorSchemeSetting, type ColorSetting, type FontPickerSetting, type HeaderSetting, type HtmlSetting, type ImagePickerSetting, type ImportMapOptions, type InferSettings, type InlineRichtextSetting, type InputSettingSchema, type InputSettings, type LineBreakSetting, type LinkListSetting, type LiquidSetting, type MetaobjectListSetting, type MetaobjectSetting, type NumberSetting, type Options, type PageSetting, type ParagraphSetting, type PresetBlock, type PresetDefinition, type ProductListSetting, type ProductSetting, type RadioSetting, type RangeSetting, type RichtextSetting, type SSGEntry, type SSGOptions, type SchemaSetting, type SectionLocales, type SelectSetting, type SettingSchema, type SettingType, type SettingValue, type ShopifyBlockType, type ShopifyMeta, type SidebarSetting, type TemplateScope, type TextAlignmentSetting, type TextSetting, type TextareaSetting, type UrlSetting, type VideoSetting, type VideoUrlSetting, vitePluginShopify as default };
412
+ export { type ArticleListSetting, type ArticleSetting, type AssertNoEmptyDefaults, type BlockDefinition, type BlogSetting, type CheckboxSetting, type CollectionListSetting, type CollectionSetting, type ColorBackgroundSetting, type ColorSchemeGroupSetting, type ColorSchemeRole, type ColorSchemeSetting, type ColorSetting, type FontPickerSetting, type HeaderSetting, type HtmlSetting, type ImagePickerSetting, type ImportMapOptions, type InferSettings, type InlineRichtextSetting, type InputSettingSchema, type InputSettings, type LineBreakSetting, type LinkListSetting, type LiquidSetting, type MetaobjectListSetting, type MetaobjectSetting, type NumberSetting, type Options, type PageSetting, type ParagraphSetting, type PresetBlock, type PresetDefinition, type ProductListSetting, type ProductSetting, type RadioSetting, type RangeSetting, type RichtextSetting, type SSGEntry, type SSGOptions, type SchemaSetting, type SelectSetting, type SettingSchema, type SettingType, type SettingValue, type ShopifyBlockType, type ShopifyMeta, type SidebarSetting, type TextAlignmentSetting, type TextSetting, type TextareaSetting, type UrlSetting, type VideoSetting, type VideoUrlSetting, vitePluginShopify as default };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vite-plugin-react-shopify",
3
- "version": "2.2.6",
3
+ "version": "2.2.8",
4
4
  "description": "Vite plugin for React Shopify themes",
5
5
  "files": [
6
6
  "dist"
@@ -17,16 +17,6 @@
17
17
  "default": "./dist/runtime/index.js"
18
18
  }
19
19
  },
20
- "scripts": {
21
- "dev": "tsup --watch",
22
- "build": "tsup && cp dev-server-index.html dist/",
23
- "typecheck": "tsc --noEmit",
24
- "test": "vitest run",
25
- "release": "bumpp && pnpm publish",
26
- "release:patch": "bumpp --patch",
27
- "release:minor": "bumpp --minor",
28
- "release:major": "bumpp --major"
29
- },
30
20
  "dependencies": {
31
21
  "debug": "^4.4.0",
32
22
  "fast-glob": "^3.3.0",
@@ -44,5 +34,15 @@
44
34
  },
45
35
  "peerDependencies": {
46
36
  "vite": "^8.0.0"
37
+ },
38
+ "scripts": {
39
+ "dev": "tsup --watch",
40
+ "build": "tsup && cp dev-server-index.html dist/",
41
+ "typecheck": "tsc --noEmit",
42
+ "test": "vitest run",
43
+ "release": "bumpp && pnpm publish",
44
+ "release:patch": "bumpp --patch",
45
+ "release:minor": "bumpp --minor",
46
+ "release:major": "bumpp --major"
47
47
  }
48
- }
48
+ }