shopify-accelerate-app 1.0.19 → 1.0.21

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.19",
3
+ "version": "1.0.21",
4
4
  "description": "Shopify App development with full Typescript Support",
5
5
  "author": "Felix Tellmann",
6
6
  "license": "MIT",
@@ -18,7 +18,6 @@ const program = new Command();
18
18
 
19
19
  const dotenv = dotenvLoad(); // Dotenv instance
20
20
 
21
- console.log(process.env);
22
21
  export const root_dir = process.env.SHOPIFY_ACCELERATE_ROOT
23
22
  ? path.join(process.cwd(), process.env.SHOPIFY_ACCELERATE_ROOT)
24
23
  : process.cwd();
@@ -186,58 +186,9 @@ module.exports = {
186
186
  23: ["23px", "1.4"],
187
187
  24: ["24px", "1.4"],
188
188
  },
189
- padding: {
190
- gutter: "var(--layout-container-gutter)",
191
- },
192
189
  maxWidth: {
193
- container: {
194
- xs: `var(--layout-page-width-xs)`,
195
- sm: `var(--layout-page-width-sm)`,
196
- md: `var(--layout-page-width-md)`,
197
- lg: `var(--layout-page-width-lg)`,
198
- },
199
190
  "8xl": "90rem",
200
191
  },
201
- borderRadius: {
202
- "theme-sm": `var(--rounded-theme-sm)`,
203
- theme: `var(--rounded-theme)`,
204
- "theme-md": `var(--rounded-theme-md)`,
205
- "theme-lg": `var(--rounded-theme-lg)`,
206
- "theme-xl": `var(--rounded-theme-xl)`,
207
- "theme-2xl": `var(--rounded-theme-2xl)`,
208
- "theme-3xl": `var(--rounded-theme-3xl)`,
209
- },
210
- colors: {
211
- theme: {
212
- bg: "rgb(var(--color-bg) / <alpha-value>)",
213
- "bg-hex": "var(--color-bg-hex)",
214
- text: "rgb(var(--color-text) / <alpha-value>)",
215
- "text-hex": "var(--color-text-hex)",
216
- "overlay-text": "rgb(var(--color-overlay-text) / <alpha-value>)",
217
- "overlay-text-hex": "var(--color-overlay-text-hex)",
218
- accent: "rgb(var(--color-accent) / <alpha-value>)",
219
- border: "rgb(var(--color-border) / <alpha-value>)",
220
- },
221
- error: "rgb(var(--color-error) / <alpha-value>)",
222
- warning: "rgb(var(--color-warning) / <alpha-value>)",
223
- success: "rgb(var(--color-success) / <alpha-value>)",
224
- info: "rgb(var(--color-info) / <alpha-value>)",
225
- gray: {
226
- 50: "rgb(var(--color-gray-50) / <alpha-value>)",
227
- 100: "rgb(var(--color-gray-100) / <alpha-value>)",
228
- 200: "rgb(var(--color-gray-200) / <alpha-value>)",
229
- 300: "rgb(var(--color-gray-300) / <alpha-value>)",
230
- 400: "rgb(var(--color-gray-400) / <alpha-value>)",
231
- 500: "rgb(var(--color-gray-500) / <alpha-value>)",
232
- 600: "rgb(var(--color-gray-600) / <alpha-value>)",
233
- 700: "rgb(var(--color-gray-700) / <alpha-value>)",
234
- 800: "rgb(var(--color-gray-800) / <alpha-value>)",
235
- 900: "rgb(var(--color-gray-900) / <alpha-value>)",
236
- },
237
- },
238
- ringColor: {
239
- DEFAULT: `rgb(var(--color-accent))`,
240
- },
241
192
  boxShadow: {
242
193
  "invert-sm": "0 -1px 2px 0 rgb(0 0 0 / 0.05)",
243
194
  invert: "0 -3px 5px 1px rgb(0 0 0 / 0.03), 0 -2px 4px 2px rgb(0 0 0 / 0.03)",