@akinon/projectzero 1.43.0-rc.14 → 1.43.0-rc.15

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.43.0-rc.15
4
+
5
+ ### Minor Changes
6
+
7
+ - fb5415d: ZERO-2804: Update file permissions for build.sh
8
+
3
9
  ## 1.43.0-rc.14
4
10
 
5
11
  ## 1.43.0-rc.13
@@ -1,5 +1,23 @@
1
1
  # projectzeronext
2
2
 
3
+ ## 1.43.0-rc.15
4
+
5
+ ### Patch Changes
6
+
7
+ - @akinon/next@1.43.0-rc.15
8
+ - @akinon/pz-akifast@1.43.0-rc.15
9
+ - @akinon/pz-b2b@1.43.0-rc.15
10
+ - @akinon/pz-basket-gift-pack@1.43.0-rc.15
11
+ - @akinon/pz-bkm@1.43.0-rc.15
12
+ - @akinon/pz-checkout-gift-pack@1.43.0-rc.15
13
+ - @akinon/pz-click-collect@1.43.0-rc.15
14
+ - @akinon/pz-credit-payment@1.43.0-rc.15
15
+ - @akinon/pz-gpay@1.43.0-rc.15
16
+ - @akinon/pz-masterpass@1.43.0-rc.15
17
+ - @akinon/pz-one-click-checkout@1.43.0-rc.15
18
+ - @akinon/pz-otp@1.43.0-rc.15
19
+ - @akinon/pz-pay-on-delivery@1.43.0-rc.15
20
+
3
21
  ## 1.43.0-rc.14
4
22
 
5
23
  ### Patch Changes
File without changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "projectzeronext",
3
- "version": "1.43.0-rc.14",
3
+ "version": "1.43.0-rc.15",
4
4
  "private": true,
5
5
  "license": "MIT",
6
6
  "scripts": {
@@ -22,19 +22,19 @@
22
22
  "prestart": "pz-prestart"
23
23
  },
24
24
  "dependencies": {
25
- "@akinon/next": "1.43.0-rc.14",
26
- "@akinon/pz-akifast": "1.43.0-rc.14",
27
- "@akinon/pz-b2b": "1.43.0-rc.14",
28
- "@akinon/pz-basket-gift-pack": "1.43.0-rc.14",
29
- "@akinon/pz-bkm": "1.43.0-rc.14",
30
- "@akinon/pz-checkout-gift-pack": "1.43.0-rc.14",
31
- "@akinon/pz-click-collect": "1.43.0-rc.14",
32
- "@akinon/pz-credit-payment": "1.43.0-rc.14",
33
- "@akinon/pz-gpay": "1.43.0-rc.14",
34
- "@akinon/pz-masterpass": "1.43.0-rc.14",
35
- "@akinon/pz-one-click-checkout": "1.43.0-rc.14",
36
- "@akinon/pz-otp": "1.43.0-rc.14",
37
- "@akinon/pz-pay-on-delivery": "1.43.0-rc.14",
25
+ "@akinon/next": "1.43.0-rc.15",
26
+ "@akinon/pz-akifast": "1.43.0-rc.15",
27
+ "@akinon/pz-b2b": "1.43.0-rc.15",
28
+ "@akinon/pz-basket-gift-pack": "1.43.0-rc.15",
29
+ "@akinon/pz-bkm": "1.43.0-rc.15",
30
+ "@akinon/pz-checkout-gift-pack": "1.43.0-rc.15",
31
+ "@akinon/pz-click-collect": "1.43.0-rc.15",
32
+ "@akinon/pz-credit-payment": "1.43.0-rc.15",
33
+ "@akinon/pz-gpay": "1.43.0-rc.15",
34
+ "@akinon/pz-masterpass": "1.43.0-rc.15",
35
+ "@akinon/pz-one-click-checkout": "1.43.0-rc.15",
36
+ "@akinon/pz-otp": "1.43.0-rc.15",
37
+ "@akinon/pz-pay-on-delivery": "1.43.0-rc.15",
38
38
  "@hookform/resolvers": "2.9.0",
39
39
  "@next/third-parties": "14.1.0",
40
40
  "@react-google-maps/api": "2.17.1",
@@ -58,7 +58,7 @@
58
58
  "yup": "0.32.11"
59
59
  },
60
60
  "devDependencies": {
61
- "@akinon/eslint-plugin-projectzero": "1.43.0-rc.14",
61
+ "@akinon/eslint-plugin-projectzero": "1.43.0-rc.15",
62
62
  "@semantic-release/changelog": "6.0.2",
63
63
  "@semantic-release/exec": "6.0.3",
64
64
  "@semantic-release/git": "10.0.1",
@@ -158,6 +158,8 @@ export default async (): Promise<void> => {
158
158
  createEnvironmentFile(projectDir);
159
159
  checkGitignore(projectDir);
160
160
 
161
+ fs.chmodSync(path.join(projectDir, 'build.sh'), 0o711);
162
+
161
163
  if (answers.projectDescription) {
162
164
  updateFileContents(path.join(projectDir, 'akinon.json'), {
163
165
  description: answers.projectDescription
@@ -142,6 +142,7 @@ exports.default = () => __awaiter(void 0, void 0, void 0, function* () {
142
142
  updatePluginsFile(projectDir);
143
143
  createEnvironmentFile(projectDir);
144
144
  checkGitignore(projectDir);
145
+ fs.chmodSync(path_1.default.join(projectDir, 'build.sh'), 0o711);
145
146
  if (answers.projectDescription) {
146
147
  updateFileContents(path_1.default.join(projectDir, 'akinon.json'), {
147
148
  description: answers.projectDescription
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@akinon/projectzero",
3
- "version": "1.43.0-rc.14",
3
+ "version": "1.43.0-rc.15",
4
4
  "private": false,
5
5
  "description": "CLI tool to manage your Project Zero Next project",
6
6
  "bin": {