shopify-accelerate-app 1.0.6 → 1.0.7

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shopify-accelerate-app",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "description": "Shopify App development with full Typescript Support",
5
5
  "author": "Felix Tellmann",
6
6
  "license": "MIT",
@@ -129,7 +129,7 @@ export const config: GlobalsState = {
129
129
  folders: {
130
130
  types: process.env.SHOPIFY_ACCELERATE_TYPES
131
131
  ? path.join(process.cwd(), process.env.SHOPIFY_ACCELERATE_TYPES)
132
- : path.join(root_dir, "@types"),
132
+ : path.join(process.cwd(), "@types"),
133
133
  utils: process.env.SHOPIFY_ACCELERATE_UTILS
134
134
  ? path.join(process.cwd(), process.env.SHOPIFY_ACCELERATE_UTILS)
135
135
  : path.join(root_dir, "@utils"),