@akinon/projectzero 1.33.0 → 1.33.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
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# projectzeronext
|
|
2
2
|
|
|
3
|
+
## 1.33.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 10123f9: ZERO-2632: rename projectzero-cli to projectzero
|
|
8
|
+
- Updated dependencies [10123f9]
|
|
9
|
+
- @akinon/next@1.33.1
|
|
10
|
+
- @akinon/pz-b2b@1.33.1
|
|
11
|
+
- @akinon/pz-gpay@1.33.1
|
|
12
|
+
- @akinon/pz-masterpass@1.33.1
|
|
13
|
+
- @akinon/pz-one-click-checkout@1.33.1
|
|
14
|
+
- @akinon/pz-otp@1.33.1
|
|
15
|
+
- @akinon/pz-pay-on-delivery@1.33.1
|
|
16
|
+
|
|
3
17
|
## 1.33.0
|
|
4
18
|
|
|
5
19
|
### Minor Changes
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "projectzeronext",
|
|
3
|
-
"version": "1.33.
|
|
3
|
+
"version": "1.33.1",
|
|
4
4
|
"private": true,
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"scripts": {
|
|
@@ -22,13 +22,13 @@
|
|
|
22
22
|
"prestart": "pz-prestart"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@akinon/next": "1.33.
|
|
26
|
-
"@akinon/pz-b2b": "1.33.
|
|
27
|
-
"@akinon/pz-gpay": "1.33.
|
|
28
|
-
"@akinon/pz-masterpass": "1.33.
|
|
29
|
-
"@akinon/pz-one-click-checkout": "1.33.
|
|
30
|
-
"@akinon/pz-otp": "1.33.
|
|
31
|
-
"@akinon/pz-pay-on-delivery": "1.33.
|
|
25
|
+
"@akinon/next": "1.33.1",
|
|
26
|
+
"@akinon/pz-b2b": "1.33.1",
|
|
27
|
+
"@akinon/pz-gpay": "1.33.1",
|
|
28
|
+
"@akinon/pz-masterpass": "1.33.1",
|
|
29
|
+
"@akinon/pz-one-click-checkout": "1.33.1",
|
|
30
|
+
"@akinon/pz-otp": "1.33.1",
|
|
31
|
+
"@akinon/pz-pay-on-delivery": "1.33.1",
|
|
32
32
|
"@hookform/resolvers": "2.9.0",
|
|
33
33
|
"@next/third-parties": "14.1.0",
|
|
34
34
|
"@react-google-maps/api": "2.17.1",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"yup": "0.32.11"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
|
-
"@akinon/eslint-plugin-projectzero": "1.33.
|
|
55
|
+
"@akinon/eslint-plugin-projectzero": "1.33.1",
|
|
56
56
|
"@semantic-release/changelog": "6.0.2",
|
|
57
57
|
"@semantic-release/exec": "6.0.3",
|
|
58
58
|
"@semantic-release/git": "10.0.1",
|
package/commands/create.ts
CHANGED
|
@@ -132,7 +132,7 @@ export default async (): Promise<void> => {
|
|
|
132
132
|
|
|
133
133
|
const templatesDir = path.resolve(
|
|
134
134
|
__dirname,
|
|
135
|
-
'../../../projectzero
|
|
135
|
+
'../../../projectzero/app-template'
|
|
136
136
|
);
|
|
137
137
|
|
|
138
138
|
fs.cpSync(templatesDir, projectDir, { recursive: true });
|
package/dist/commands/create.js
CHANGED
|
@@ -122,7 +122,7 @@ exports.default = () => __awaiter(void 0, void 0, void 0, function* () {
|
|
|
122
122
|
if (!fs.existsSync(projectDir)) {
|
|
123
123
|
fs.mkdirSync(projectDir, { recursive: true });
|
|
124
124
|
}
|
|
125
|
-
const templatesDir = path_1.default.resolve(__dirname, '../../../projectzero
|
|
125
|
+
const templatesDir = path_1.default.resolve(__dirname, '../../../projectzero/app-template');
|
|
126
126
|
fs.cpSync(templatesDir, projectDir, { recursive: true });
|
|
127
127
|
updatePluginsFile(projectDir);
|
|
128
128
|
if (answers.projectDescription) {
|