@akinon/projectzero 1.49.0 → 1.50.0-rc.1
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/CHANGELOG.md +43 -0
- package/README.md +3 -2
- package/app-template/.gitignore +2 -0
- package/app-template/.lintstagedrc.js +5 -4
- package/app-template/CHANGELOG.md +1709 -47
- package/app-template/docs/basic-setup.md +1 -1
- package/app-template/docs/plugins.md +7 -7
- package/app-template/package-lock.json +29303 -0
- package/app-template/package.json +22 -20
- package/app-template/public/locales/en/account.json +4 -4
- package/app-template/public/locales/tr/account.json +1 -1
- package/app-template/src/app/[commerce]/[locale]/[currency]/[...prettyurl]/page.tsx +8 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/account/address/page.tsx +1 -1
- package/app-template/src/app/[commerce]/[locale]/[currency]/account/coupons/page.tsx +4 -4
- package/app-template/src/app/[commerce]/[locale]/[currency]/account/profile/page.tsx +1 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/category/[pk]/page.tsx +5 -2
- package/app-template/src/app/[commerce]/[locale]/[currency]/orders/completed/[token]/page.tsx +12 -8
- package/app-template/src/components/checkbox.tsx +2 -2
- package/app-template/src/components/input.tsx +19 -7
- package/app-template/src/components/pagination.tsx +13 -18
- package/app-template/src/components/price.tsx +9 -4
- package/app-template/src/redux/reducers/category.ts +7 -1
- package/app-template/src/settings.js +6 -1
- package/app-template/src/views/account/address-card.tsx +2 -2
- package/app-template/src/views/account/address-form.tsx +22 -7
- package/app-template/src/views/account/contact-form.tsx +23 -6
- package/app-template/src/views/account/favorite-item.tsx +2 -2
- package/app-template/src/views/account/favourite-products/favourite-products-list.tsx +5 -1
- package/app-template/src/views/breadcrumb.tsx +4 -1
- package/app-template/src/views/category/category-active-filters.tsx +16 -6
- package/app-template/src/views/category/category-info.tsx +31 -17
- package/app-template/src/views/category/filters/filter-item.tsx +163 -0
- package/app-template/src/views/category/filters/index.tsx +16 -108
- package/app-template/src/views/category/layout.tsx +5 -3
- package/app-template/src/views/checkout/steps/payment/options/credit-card/index.tsx +33 -4
- package/app-template/src/views/checkout/steps/payment/options/redirection.tsx +43 -37
- package/app-template/src/views/checkout/steps/payment/payment-option-buttons.tsx +19 -3
- package/app-template/src/views/checkout/steps/shipping/address-box.tsx +2 -2
- package/app-template/src/views/checkout/steps/shipping/addresses.tsx +1 -1
- package/app-template/src/views/checkout/steps/shipping/shipping-options.tsx +230 -37
- package/app-template/src/views/find-in-store/index.tsx +2 -3
- package/app-template/src/views/header/mobile-menu.tsx +25 -8
- package/app-template/src/views/product/product-info.tsx +0 -2
- package/app-template/tsconfig.json +14 -4
- package/app-template/yarn.lock +1824 -1953
- package/commands/create.ts +29 -5
- package/dist/commands/create.js +25 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @akinon/projectzero
|
|
2
2
|
|
|
3
|
+
## 1.50.0-rc.1
|
|
4
|
+
|
|
5
|
+
## 1.50.0-rc.0
|
|
6
|
+
|
|
7
|
+
### Minor Changes
|
|
8
|
+
|
|
9
|
+
- 90282b53: ZERO-2729: Audit packages for yarn and npm and also update app-template
|
|
10
|
+
- 03c4c3eb: ZERO-2731: Update Project Zero CLI command
|
|
11
|
+
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
12
|
+
- 9b6bf91e: ZERO-2660: Change campaings to campaigns
|
|
13
|
+
- 00ffde2f: ZERO-2637: enhance create command with improved messaging
|
|
14
|
+
- d2f0f15c: ZERO-2723: Update sentry version and dependencies
|
|
15
|
+
|
|
3
16
|
## 1.49.0
|
|
4
17
|
|
|
5
18
|
## 1.48.0
|
|
@@ -49,6 +62,36 @@
|
|
|
49
62
|
- cd78ddc: ZERO-2661: rename .npmignore to .gitignore during project creation
|
|
50
63
|
- 735f4f0: ZERO-2661: create .npmignore in app-template
|
|
51
64
|
|
|
65
|
+
## 1.34.0-rc.16
|
|
66
|
+
|
|
67
|
+
### Minor Changes
|
|
68
|
+
|
|
69
|
+
- cd78ddc: ZERO-2661: rename .npmignore to .gitignore during project creation
|
|
70
|
+
|
|
71
|
+
## 1.34.0-rc.15
|
|
72
|
+
|
|
73
|
+
### Minor Changes
|
|
74
|
+
|
|
75
|
+
- 735f4f0: ZERO-2661: create .npmignore in app-template
|
|
76
|
+
|
|
77
|
+
## 1.34.0-rc.14
|
|
78
|
+
|
|
79
|
+
## 1.34.0-rc.13
|
|
80
|
+
|
|
81
|
+
## 1.34.0-rc.12
|
|
82
|
+
|
|
83
|
+
## 1.34.0-rc.11
|
|
84
|
+
|
|
85
|
+
## 1.34.0-rc.10
|
|
86
|
+
|
|
87
|
+
## 1.34.0-rc.9
|
|
88
|
+
|
|
89
|
+
## 1.34.0-rc.8
|
|
90
|
+
|
|
91
|
+
## 1.34.0-rc.7
|
|
92
|
+
|
|
93
|
+
## 1.34.0-rc.6
|
|
94
|
+
|
|
52
95
|
## 1.33.2
|
|
53
96
|
|
|
54
97
|
### Patch Changes
|
package/README.md
CHANGED
package/app-template/.gitignore
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
const path = require('path');
|
|
2
2
|
|
|
3
|
-
const buildEslintCommand = (filenames) =>
|
|
4
|
-
//
|
|
5
|
-
`next lint --file ${filenames
|
|
3
|
+
const buildEslintCommand = (filenames) => {
|
|
4
|
+
// Added --fix flag to automatically fix errors that can be fixed by ESLint
|
|
5
|
+
return `next lint --file ${filenames
|
|
6
6
|
.map((f) => path.relative(process.cwd(), f))
|
|
7
|
-
.join(' --file ')}`;
|
|
7
|
+
.join(' --file ')} --fix`;
|
|
8
|
+
};
|
|
8
9
|
|
|
9
10
|
module.exports = {
|
|
10
11
|
'**/*.(ts|tsx)': () => 'yarn tsc --noEmit',
|