@thryveai/theme-interfaces 1.4.11 → 1.4.12

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/.eslintignore CHANGED
@@ -12,13 +12,6 @@
12
12
  /dist
13
13
  /lib
14
14
 
15
- # output files
16
- /default-theme.interface.d.ts
17
- /theme.interfaces.d.ts
18
- /index.d.ts
19
- /icons.interfaces.d.ts
20
- /retailer-settings.interfaces.d.ts
21
-
22
15
  # misc
23
16
  .DS_Store
24
17
  .env.local
package/.eslintrc.js CHANGED
@@ -14,22 +14,6 @@ module.exports = {
14
14
  },
15
15
  plugins: ['eslint-plugin-prettier', 'prettier'],
16
16
  rules: {
17
- 'prettier/prettier': ['error'],
18
- 'sort-imports': [
19
- 'error',
20
- {
21
- allowSeparatedGroups: false,
22
- ignoreCase: false,
23
- ignoreDeclarationSort: false,
24
- ignoreMemberSort: false,
25
- memberSyntaxSortOrder: ['none', 'all', 'multiple', 'single']
26
- }
27
- ],
28
- 'sort-keys': [
29
- 'error',
30
- 'asc',
31
- { caseSensitive: true, minKeys: 2, natural: false }
32
- ],
33
- 'sort-vars': ['error', { ignoreCase: true }]
17
+ 'prettier/prettier': ['error']
34
18
  }
35
19
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thryveai/theme-interfaces",
3
- "version": "1.4.11",
3
+ "version": "1.4.12",
4
4
  "description": "Shared Interfaces for all ThryveAi storefront retailer themes.",
5
5
  "scripts": {
6
6
  "build": "tsc && npm run lint -- --fix",