@fast-simon/shopify-hydrogen 1.0.2 → 1.0.3

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.
@@ -6,7 +6,7 @@ const extendOptimizeDeps = () => ({
6
6
  config: () => ({
7
7
  optimizeDeps: {
8
8
  include: [
9
- '@fast-simon/hydrogen-dev'
9
+ '@fast-simon/shopify-hydrogen'
10
10
  ]
11
11
  }
12
12
  })
@@ -11,7 +11,7 @@ const injectCSS = () => {
11
11
  tag: 'link',
12
12
  attrs: {
13
13
  'rel': 'stylesheet',
14
- 'href': '/node_modules/@fast-simon/hydrogen-dev/dist/esnext/styles/fast-simon.css'
14
+ 'href': '/node_modules/@fast-simon/shopify-hydrogen/dist/esnext/styles/fast-simon.css'
15
15
  }
16
16
  }];
17
17
  return {
@@ -6,7 +6,7 @@ const suppressWarnings = () => {
6
6
  name: 'fast-simon:suppress-warnings',
7
7
  configResolved(config) {
8
8
  // TODO: Fix the real issue
9
- const filterOut = (msg) => msg.startsWith("@fast-simon/hydrogen-dev doesn't appear to be written in CJS");
9
+ const filterOut = (msg) => msg.startsWith("@fast-simon/shopify-hydrogen doesn't appear to be written in CJS");
10
10
  for (const method of ['warn', 'warnOnce']) {
11
11
  const original = config.logger[method];
12
12
  config.logger[method] = (msg, ...args) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fast-simon/shopify-hydrogen",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "build": "npm run build:plugin:cjs && npm run build:esm",