@applicaster/zapplicaster-cli 15.0.0-rc.99 → 16.0.0-alpha.9803580571

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applicaster/zapplicaster-cli",
3
- "version": "15.0.0-rc.99",
3
+ "version": "16.0.0-alpha.9803580571",
4
4
  "description": "CLI Tool for the zapp app and Quick Brick project",
5
5
  "main": "index.js",
6
6
  "publishConfig": {
@@ -28,10 +28,10 @@
28
28
  },
29
29
  "homepage": "https://github.com/applicaster/quickbrick#readme",
30
30
  "dependencies": {
31
- "@applicaster/zapp-react-dom-cli-template": "15.0.0-rc.99",
32
- "@applicaster/zapp-react-native-android-tv-cli-template": "15.0.0-rc.99",
33
- "@applicaster/zapp-react-native-cli-template": "15.0.0-rc.99",
34
- "@applicaster/zapp-react-native-tvos-cli-template": "15.0.0-rc.99",
31
+ "@applicaster/zapp-react-dom-cli-template": "16.0.0-alpha.9803580571",
32
+ "@applicaster/zapp-react-native-android-tv-cli-template": "16.0.0-alpha.9803580571",
33
+ "@applicaster/zapp-react-native-cli-template": "16.0.0-alpha.9803580571",
34
+ "@applicaster/zapp-react-native-tvos-cli-template": "16.0.0-alpha.9803580571",
35
35
  "axios": "^0.28.0",
36
36
  "camelize": "^1.0.0",
37
37
  "chalk": "^2.3.2",
@@ -1,8 +1,7 @@
1
1
  const R = require("ramda");
2
2
  const fs = require("fs");
3
3
  const semver = require("semver");
4
- const { resolve, join } = require("path");
5
- const { existsSync } = require("fs");
4
+ const { resolve } = require("path");
6
5
  const packageJSON = require("../../../package.json");
7
6
 
8
7
  const {
@@ -31,36 +30,6 @@ const {
31
30
 
32
31
  const { buildMobileApp } = require("./buildMobile");
33
32
 
34
- async function patchPackages() {
35
- if (existsSync(join(process.cwd(), "quick_brick", "patch_rn.js"))) {
36
- exec(`node ${process.cwd()}/quick_brick/patch_rn.js`);
37
- } else if (
38
- existsSync(join(process.cwd(), "development-app", "patch_rn.js"))
39
- ) {
40
- exec(`node ${process.cwd()}/development-app/patch_rn.js`);
41
- } else if (
42
- existsSync(
43
- join(
44
- process.cwd(),
45
- "packages",
46
- "zapp-react-dom-development-app",
47
- "patch_rn.js"
48
- )
49
- )
50
- ) {
51
- const pathToFile = join(
52
- process.cwd(),
53
- "packages",
54
- "zapp-react-dom-development-app",
55
- "patch_rn.js"
56
- );
57
-
58
- exec(`node ${pathToFile}`);
59
- } else {
60
- logger.log("Cannot patch packages, can't find the patch_rn.js file");
61
- }
62
- }
63
-
64
33
  /**
65
34
  * fallback to en for missing dayjslocalization
66
35
  * converts the locale code to a dayjs compatible locale code
@@ -82,6 +51,10 @@ const toDayJSLocaleMap = (code) => {
82
51
  tt: null,
83
52
  "es-LA": "es",
84
53
  "en-UK": "en-gb",
54
+ "en-ZA": null,
55
+ "en-NG": null,
56
+ "en-ZW": null,
57
+ "en-ZM": null,
85
58
  };
86
59
 
87
60
  if (map[code] === null) {
@@ -212,8 +185,6 @@ async function appBootstrapper(configuration) {
212
185
  const quickBrickVersion = packageJSON.version;
213
186
  checkAllPluginsSatisfiesQuickBrickVersion({ quickBrickVersion, plugins });
214
187
 
215
- await patchPackages();
216
-
217
188
  if (buildMobile) {
218
189
  await buildMobileApp(configuration);
219
190
  }
@@ -13,6 +13,19 @@ exports[`copyFiles when destination path has no package.json doesn't skips the c
13
13
  ]
14
14
  `;
15
15
 
16
+ exports[`copyFiles when there is no package.json to copy copies the dir 1`] = `
17
+ [
18
+ [
19
+ "some/source/path/files/file1.txt",
20
+ "some/destination/Path/files/file1.txt",
21
+ ],
22
+ [
23
+ "some/source/path/files/file2.txt",
24
+ "some/destination/Path/files/file2.txt",
25
+ ],
26
+ ]
27
+ `;
28
+
16
29
  exports[`copyFiles when there is no package.json to copy copies the files 1`] = `
17
30
  [
18
31
  [
@@ -39,6 +39,7 @@ describe("copyFiles", () => {
39
39
  fs.writeFile("bar.json", { bar: "baz" }, jest.fn());
40
40
  fs.writeFile("qux.json", { qux: 42 }, jest.fn());
41
41
  fs.copyFileSync.mockClear();
42
+ fs.readdir.mockClear();
42
43
  });
43
44
 
44
45
  describe("when there is no package.json to copy", () => {
@@ -47,6 +48,21 @@ describe("copyFiles", () => {
47
48
  expect(fs.copyFileSync).toHaveBeenCalledTimes(2);
48
49
  expect(fs.copyFileSync.mock.calls).toMatchSnapshot();
49
50
  });
51
+
52
+ it("copies the dir", async () => {
53
+ // Mock fs.readdir to return some files when the directory is read
54
+ fs.readdir.mockImplementationOnce((path, callback) => {
55
+ callback(null, ["file1.txt", "file2.txt"]);
56
+ });
57
+
58
+ const results = copyFiles(sourcePath, ["files/"], destinationPath);
59
+
60
+ // Wait for the promise to resolve (the directory copy operation)
61
+ await Promise.all(results);
62
+
63
+ expect(fs.copyFileSync).toHaveBeenCalledTimes(2);
64
+ expect(fs.copyFileSync.mock.calls).toMatchSnapshot();
65
+ });
50
66
  });
51
67
 
52
68
  describe("when destination path has package.json", () => {
package/src/file/index.js CHANGED
@@ -5,7 +5,17 @@ const R = require("ramda");
5
5
  * @module @applicaster/zapplicaster-cli/util/file
6
6
  */
7
7
 
8
- const { writeFile, readFile, readdir, copyFile, copyFileSync } = require("fs");
8
+ const {
9
+ writeFile,
10
+ readFile,
11
+ readdir,
12
+ copyFile,
13
+ copyFileSync,
14
+ lstatSync,
15
+ mkdirSync,
16
+ existsSync,
17
+ } = require("fs");
18
+
9
19
  const { promisify } = require("util");
10
20
  const { join } = require("path");
11
21
 
@@ -72,14 +82,27 @@ function copyFiles(source, filesOrFilesGetter, destination, config) {
72
82
  ? filesOrFilesGetter(config)
73
83
  : filesOrFilesGetter;
74
84
 
75
- return R.map(
76
- (file) =>
77
- copyFileSync(
78
- join(source, file),
79
- destinationFileNameMapper(join(destination, file))
80
- ),
81
- files
82
- );
85
+ return R.map((file) => {
86
+ let sourcePath, destinationPath;
87
+
88
+ if (Array.isArray(file)) {
89
+ sourcePath = join(source, file[0]);
90
+ destinationPath = destinationFileNameMapper(join(destination, file[1]));
91
+ } else {
92
+ sourcePath = join(source, file);
93
+ destinationPath = destinationFileNameMapper(join(destination, file));
94
+ }
95
+
96
+ if (lstatSync(sourcePath).isDirectory()) {
97
+ if (!existsSync(destinationPath)) {
98
+ mkdirSync(destinationPath, { recursive: true });
99
+ }
100
+
101
+ return copyFolder(sourcePath, destinationPath);
102
+ }
103
+
104
+ return copyFileSync(sourcePath, destinationPath);
105
+ }, files);
83
106
  }
84
107
 
85
108
  module.exports = {
@@ -2,10 +2,18 @@ const fs = jest.genMockFromModule("fs");
2
2
  const _fs = jest.requireActual("fs");
3
3
  const R = require("ramda");
4
4
 
5
+ function mkdirSync() {
6
+ return {};
7
+ }
8
+
5
9
  function readdirSync(folder) {
6
10
  return _fs.readdirSync(folder);
7
11
  }
8
12
 
13
+ async function readdirAsync(folder) {
14
+ return Promise.resolve(_fs.readdirSync(folder));
15
+ }
16
+
9
17
  function readdir(folder, callback) {
10
18
  const files = R.map(R.prop("fileName"), fs.__writenFiles);
11
19
 
@@ -77,10 +85,17 @@ function __resetFiles() {
77
85
  fs.__writenFiles = [];
78
86
  }
79
87
 
88
+ fs.lstatSync = (_path) => ({
89
+ isDirectory: () => _path.endsWith("/"),
90
+ isFile: () => _path.endsWith("/") === false,
91
+ });
92
+
80
93
  fs.__writenFiles = [];
81
94
  fs.__resetFiles = __resetFiles;
82
95
  fs.__addMockedFiles = __addMockedFiles;
83
96
  fs.readdirSync = readdirSync;
97
+ fs.readdirAsync = readdirAsync;
98
+ fs.mkdirSync = mkdirSync;
84
99
  fs.readdir = jest.fn(readdir);
85
100
  fs.writeFile = jest.fn(writeFile);
86
101
  fs.readFile = jest.fn(readFile);