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

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": "16.0.0-alpha.9803580571",
3
+ "version": "16.0.0-rc.2",
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": "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",
31
+ "@applicaster/zapp-react-dom-cli-template": "16.0.0-rc.2",
32
+ "@applicaster/zapp-react-native-android-tv-cli-template": "16.0.0-rc.2",
33
+ "@applicaster/zapp-react-native-cli-template": "16.0.0-rc.2",
34
+ "@applicaster/zapp-react-native-tvos-cli-template": "16.0.0-rc.2",
35
35
  "axios": "^0.28.0",
36
36
  "camelize": "^1.0.0",
37
37
  "chalk": "^2.3.2",
@@ -1,7 +1,8 @@
1
1
  const R = require("ramda");
2
2
  const fs = require("fs");
3
3
  const semver = require("semver");
4
- const { resolve } = require("path");
4
+ const { resolve, join } = require("path");
5
+ const { existsSync } = require("fs");
5
6
  const packageJSON = require("../../../package.json");
6
7
 
7
8
  const {
@@ -30,6 +31,36 @@ const {
30
31
 
31
32
  const { buildMobileApp } = require("./buildMobile");
32
33
 
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
+
33
64
  /**
34
65
  * fallback to en for missing dayjslocalization
35
66
  * converts the locale code to a dayjs compatible locale code
@@ -185,6 +216,8 @@ async function appBootstrapper(configuration) {
185
216
  const quickBrickVersion = packageJSON.version;
186
217
  checkAllPluginsSatisfiesQuickBrickVersion({ quickBrickVersion, plugins });
187
218
 
219
+ await patchPackages();
220
+
188
221
  if (buildMobile) {
189
222
  await buildMobileApp(configuration);
190
223
  }
@@ -13,19 +13,6 @@ 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
-
29
16
  exports[`copyFiles when there is no package.json to copy copies the files 1`] = `
30
17
  [
31
18
  [
@@ -39,7 +39,6 @@ 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();
43
42
  });
44
43
 
45
44
  describe("when there is no package.json to copy", () => {
@@ -48,21 +47,6 @@ describe("copyFiles", () => {
48
47
  expect(fs.copyFileSync).toHaveBeenCalledTimes(2);
49
48
  expect(fs.copyFileSync.mock.calls).toMatchSnapshot();
50
49
  });
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
- });
66
50
  });
67
51
 
68
52
  describe("when destination path has package.json", () => {
package/src/file/index.js CHANGED
@@ -5,17 +5,7 @@ const R = require("ramda");
5
5
  * @module @applicaster/zapplicaster-cli/util/file
6
6
  */
7
7
 
8
- const {
9
- writeFile,
10
- readFile,
11
- readdir,
12
- copyFile,
13
- copyFileSync,
14
- lstatSync,
15
- mkdirSync,
16
- existsSync,
17
- } = require("fs");
18
-
8
+ const { writeFile, readFile, readdir, copyFile, copyFileSync } = require("fs");
19
9
  const { promisify } = require("util");
20
10
  const { join } = require("path");
21
11
 
@@ -82,27 +72,14 @@ function copyFiles(source, filesOrFilesGetter, destination, config) {
82
72
  ? filesOrFilesGetter(config)
83
73
  : filesOrFilesGetter;
84
74
 
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);
75
+ return R.map(
76
+ (file) =>
77
+ copyFileSync(
78
+ join(source, file),
79
+ destinationFileNameMapper(join(destination, file))
80
+ ),
81
+ files
82
+ );
106
83
  }
107
84
 
108
85
  module.exports = {
@@ -2,18 +2,10 @@ 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
-
9
5
  function readdirSync(folder) {
10
6
  return _fs.readdirSync(folder);
11
7
  }
12
8
 
13
- async function readdirAsync(folder) {
14
- return Promise.resolve(_fs.readdirSync(folder));
15
- }
16
-
17
9
  function readdir(folder, callback) {
18
10
  const files = R.map(R.prop("fileName"), fs.__writenFiles);
19
11
 
@@ -85,17 +77,10 @@ function __resetFiles() {
85
77
  fs.__writenFiles = [];
86
78
  }
87
79
 
88
- fs.lstatSync = (_path) => ({
89
- isDirectory: () => _path.endsWith("/"),
90
- isFile: () => _path.endsWith("/") === false,
91
- });
92
-
93
80
  fs.__writenFiles = [];
94
81
  fs.__resetFiles = __resetFiles;
95
82
  fs.__addMockedFiles = __addMockedFiles;
96
83
  fs.readdirSync = readdirSync;
97
- fs.readdirAsync = readdirAsync;
98
- fs.mkdirSync = mkdirSync;
99
84
  fs.readdir = jest.fn(readdir);
100
85
  fs.writeFile = jest.fn(writeFile);
101
86
  fs.readFile = jest.fn(readFile);