@akinon/projectzero 1.51.0 → 1.52.0

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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @akinon/projectzero
2
2
 
3
+ ## 1.52.0
4
+
5
+ ### Minor Changes
6
+
7
+ - d8dd8dc: ZERO-2729: Audit packages for yarn and npm and also update app-template
8
+
3
9
  ## 1.51.0
4
10
 
5
11
  ## 1.50.0
@@ -1,10 +1,11 @@
1
1
  const path = require('path');
2
2
 
3
- const buildEslintCommand = (filenames) =>
4
- // TODO: Add --fix flag later
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',
@@ -1,5 +1,40 @@
1
1
  # projectzeronext
2
2
 
3
+ ## 1.52.0
4
+
5
+ ### Minor Changes
6
+
7
+ - d8dd8dc: ZERO-2729: Audit packages for yarn and npm and also update app-template
8
+ - 7521265: ZERO-2787: Fix hover classname for favorite item
9
+ - 52c1373: ZERO-2619: Added fix flag for the staged linter
10
+ - 552ee8a: ZERO-2777: fix link component usage
11
+ - 778a9a0: ZERO-2740: Upgrade next to 14.2.4
12
+ - 9609eb2: ZERO-2779: Upgrade for tailwind
13
+ - 959e1fa: ZERO-2778: Upgrade for nextjs
14
+ - 016d379: ZERO-2729: Update packages and force update dependencies using resolutions
15
+
16
+ ### Patch Changes
17
+
18
+ - Updated dependencies [d8dd8dc]
19
+ - Updated dependencies [50b9069]
20
+ - Updated dependencies [8d9ac9a]
21
+ - Updated dependencies [18e8197]
22
+ - Updated dependencies [016d379]
23
+ - Updated dependencies [146ea39]
24
+ - @akinon/next@1.52.0
25
+ - @akinon/pz-checkout-gift-pack@1.52.0
26
+ - @akinon/pz-one-click-checkout@1.52.0
27
+ - @akinon/pz-basket-gift-pack@1.52.0
28
+ - @akinon/pz-click-collect@1.52.0
29
+ - @akinon/pz-masterpass@1.52.0
30
+ - @akinon/pz-akifast@1.52.0
31
+ - @akinon/pz-gpay@1.52.0
32
+ - @akinon/pz-b2b@1.52.0
33
+ - @akinon/pz-bkm@1.52.0
34
+ - @akinon/pz-otp@1.52.0
35
+ - @akinon/pz-credit-payment@1.52.0
36
+ - @akinon/pz-pay-on-delivery@1.52.0
37
+
3
38
  ## 1.51.0
4
39
 
5
40
  ### Minor Changes