@expo/inline-modules 0.1.0-canary-20260624-9d83b81 → 0.1.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/build/index.js +5 -12
- package/build/index.js.map +1 -1
- package/build/xcodeProjectUpdates.js +39 -68
- package/build/xcodeProjectUpdates.js.map +1 -1
- package/package.json +7 -10
package/build/index.js
CHANGED
|
@@ -1,13 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
Object.defineProperty(exports, "updateXcodeProject", {
|
|
6
|
-
|
|
7
|
-
get: function() {
|
|
8
|
-
return _xcodeProjectUpdates.updateXcodeProject;
|
|
9
|
-
}
|
|
10
|
-
});
|
|
11
|
-
const _xcodeProjectUpdates = require("./xcodeProjectUpdates");
|
|
12
|
-
|
|
13
|
-
//# sourceMappingURL=index.js.map
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.updateXcodeProject = void 0;
|
|
4
|
+
var xcodeProjectUpdates_1 = require("./xcodeProjectUpdates");
|
|
5
|
+
Object.defineProperty(exports, "updateXcodeProject", { enumerable: true, get: function () { return xcodeProjectUpdates_1.updateXcodeProject; } });
|
|
6
|
+
//# sourceMappingURL=index.js.map
|
package/build/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;AAAA,6DAA0F;AAAjF,yHAAA,kBAAkB,OAAA"}
|
|
@@ -1,39 +1,12 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
}
|
|
5
|
-
Object.defineProperty(exports, "
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
});
|
|
11
|
-
function _configplugins() {
|
|
12
|
-
const data = require("@expo/config-plugins");
|
|
13
|
-
_configplugins = function() {
|
|
14
|
-
return data;
|
|
15
|
-
};
|
|
16
|
-
return data;
|
|
17
|
-
}
|
|
18
|
-
function _fs() {
|
|
19
|
-
const data = /*#__PURE__*/ _interop_require_default(require("fs"));
|
|
20
|
-
_fs = function() {
|
|
21
|
-
return data;
|
|
22
|
-
};
|
|
23
|
-
return data;
|
|
24
|
-
}
|
|
25
|
-
function _path() {
|
|
26
|
-
const data = /*#__PURE__*/ _interop_require_default(require("path"));
|
|
27
|
-
_path = function() {
|
|
28
|
-
return data;
|
|
29
|
-
};
|
|
30
|
-
return data;
|
|
31
|
-
}
|
|
32
|
-
function _interop_require_default(obj) {
|
|
33
|
-
return obj && obj.__esModule ? obj : {
|
|
34
|
-
default: obj
|
|
35
|
-
};
|
|
36
|
-
}
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.updateXcodeProject = updateXcodeProject;
|
|
7
|
+
const config_plugins_1 = require("@expo/config-plugins");
|
|
8
|
+
const fs_1 = __importDefault(require("fs"));
|
|
9
|
+
const path_1 = __importDefault(require("path"));
|
|
37
10
|
function escapeXMLCharacters(original) {
|
|
38
11
|
const noAmps = original.replace('&', '&');
|
|
39
12
|
const noLt = noAmps.replace('<', '<');
|
|
@@ -46,16 +19,16 @@ function escapeXMLCharacters(original) {
|
|
|
46
19
|
function getMainTargetName(config) {
|
|
47
20
|
const name = config.name;
|
|
48
21
|
const safeName = escapeXMLCharacters(name);
|
|
49
|
-
return
|
|
22
|
+
return config_plugins_1.IOSConfig.XcodeUtils.sanitizedName(safeName);
|
|
50
23
|
}
|
|
51
24
|
function getNativeTargetSynchronizedGroupsMap(pbxProject) {
|
|
52
25
|
const objects = pbxProject.hash.project.objects;
|
|
53
26
|
const nativeTargetSynchronizedGroups = new Map();
|
|
54
|
-
for (const target of pbxProject.getFirstProject().firstProject.targets){
|
|
27
|
+
for (const target of pbxProject.getFirstProject().firstProject.targets) {
|
|
55
28
|
const nativeTargetGroup = objects.PBXNativeTarget[target.value];
|
|
56
29
|
const synchronizedGroups = new Set();
|
|
57
|
-
if (nativeTargetGroup
|
|
58
|
-
for (const synchronizedGroup of nativeTargetGroup.fileSystemSynchronizedGroups){
|
|
30
|
+
if (nativeTargetGroup.fileSystemSynchronizedGroups) {
|
|
31
|
+
for (const synchronizedGroup of nativeTargetGroup.fileSystemSynchronizedGroups) {
|
|
59
32
|
synchronizedGroups.add(synchronizedGroup.value);
|
|
60
33
|
}
|
|
61
34
|
}
|
|
@@ -67,34 +40,38 @@ function prepareSynchronizedRootGroups(pbxProject) {
|
|
|
67
40
|
const objects = pbxProject.hash.project.objects;
|
|
68
41
|
const fsSynchronizedRootGroups = new Map();
|
|
69
42
|
if (objects.PBXFileSystemSynchronizedRootGroup) {
|
|
70
|
-
for (const key of Object.keys(objects.PBXFileSystemSynchronizedRootGroup)){
|
|
43
|
+
for (const key of Object.keys(objects.PBXFileSystemSynchronizedRootGroup)) {
|
|
71
44
|
if (key.endsWith('_comment')) {
|
|
72
45
|
continue;
|
|
73
46
|
}
|
|
74
47
|
const groupObject = objects.PBXFileSystemSynchronizedRootGroup[key];
|
|
75
48
|
fsSynchronizedRootGroups.set(groupObject.path, key);
|
|
76
49
|
}
|
|
77
|
-
}
|
|
50
|
+
}
|
|
51
|
+
else {
|
|
78
52
|
objects.PBXFileSystemSynchronizedRootGroup = {};
|
|
79
53
|
}
|
|
80
|
-
return {
|
|
81
|
-
fsSynchronizedRootGroups
|
|
82
|
-
};
|
|
54
|
+
return { fsSynchronizedRootGroups };
|
|
83
55
|
}
|
|
56
|
+
/**
|
|
57
|
+
* Add watched directories as PBXFileSystemSynchronizedRootGroups to pbxproj file in the project and save the changes.
|
|
58
|
+
*/
|
|
84
59
|
async function updateXcodeProject(projectRoot, inlineModulesXcodeParams) {
|
|
85
60
|
const swiftWatchedDirectories = inlineModulesXcodeParams.watchedDirectories;
|
|
86
|
-
const xcodeProjectTargets = inlineModulesXcodeParams.xcodeProjectTargets
|
|
61
|
+
const xcodeProjectTargets = inlineModulesXcodeParams.xcodeProjectTargets
|
|
62
|
+
? new Set(inlineModulesXcodeParams.xcodeProjectTargets)
|
|
63
|
+
: undefined;
|
|
87
64
|
// Only perform changes to pbxproj if necessary
|
|
88
65
|
if (swiftWatchedDirectories.length === 0) {
|
|
89
66
|
return;
|
|
90
67
|
}
|
|
91
|
-
const pbxProject =
|
|
68
|
+
const pbxProject = config_plugins_1.IOSConfig.XcodeUtils.getPbxproj(projectRoot);
|
|
92
69
|
const mainGroupUUID = pbxProject.getFirstProject().firstProject.mainGroup;
|
|
93
70
|
const objects = pbxProject.hash.project.objects;
|
|
94
71
|
const projectRootRelativeToIos = '..';
|
|
95
72
|
const pbxNativeTarget = pbxProject.hash.project.objects.PBXNativeTarget;
|
|
96
73
|
const nativeTargetSynchronizedGroups = getNativeTargetSynchronizedGroupsMap(pbxProject);
|
|
97
|
-
const addWatchedDirectoryToTarget = (targetUUID, nativeTargetGroup, dir, dirUUID)=>{
|
|
74
|
+
const addWatchedDirectoryToTarget = (targetUUID, nativeTargetGroup, dir, dirUUID) => {
|
|
98
75
|
if (!nativeTargetSynchronizedGroups.has(targetUUID)) {
|
|
99
76
|
nativeTargetSynchronizedGroups.set(targetUUID, new Set());
|
|
100
77
|
}
|
|
@@ -105,23 +82,19 @@ async function updateXcodeProject(projectRoot, inlineModulesXcodeParams) {
|
|
|
105
82
|
if (!nativeTargetGroup.fileSystemSynchronizedGroups) {
|
|
106
83
|
nativeTargetGroup.fileSystemSynchronizedGroups = [];
|
|
107
84
|
}
|
|
108
|
-
nativeTargetGroup.fileSystemSynchronizedGroups.push({
|
|
109
|
-
value: dirUUID,
|
|
110
|
-
comment: dir
|
|
111
|
-
});
|
|
85
|
+
nativeTargetGroup.fileSystemSynchronizedGroups.push({ value: dirUUID, comment: dir });
|
|
112
86
|
targetSynchronizedGroups.add(dirUUID);
|
|
113
87
|
};
|
|
114
88
|
const { fsSynchronizedRootGroups } = prepareSynchronizedRootGroups(pbxProject);
|
|
115
|
-
const getOrCreateWatchedDirectoryUUID = (dir)=>{
|
|
116
|
-
const dirRelativeToIos =
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
return existingUUID;
|
|
89
|
+
const getOrCreateWatchedDirectoryUUID = (dir) => {
|
|
90
|
+
const dirRelativeToIos = path_1.default.join(projectRootRelativeToIos, dir);
|
|
91
|
+
if (fsSynchronizedRootGroups.has(dirRelativeToIos)) {
|
|
92
|
+
return fsSynchronizedRootGroups.get(dirRelativeToIos);
|
|
120
93
|
}
|
|
121
94
|
const newUUID = pbxProject.generateUuid();
|
|
122
95
|
objects.PBXGroup[mainGroupUUID].children.push({
|
|
123
96
|
value: newUUID,
|
|
124
|
-
comment: dir
|
|
97
|
+
comment: dir,
|
|
125
98
|
});
|
|
126
99
|
objects.PBXFileSystemSynchronizedRootGroup[newUUID] = {
|
|
127
100
|
isa: 'PBXFileSystemSynchronizedRootGroup',
|
|
@@ -129,30 +102,28 @@ async function updateXcodeProject(projectRoot, inlineModulesXcodeParams) {
|
|
|
129
102
|
explicitFolders: [],
|
|
130
103
|
name: dir,
|
|
131
104
|
path: dirRelativeToIos,
|
|
132
|
-
sourceTree: 'SOURCE_ROOT'
|
|
105
|
+
sourceTree: 'SOURCE_ROOT',
|
|
133
106
|
};
|
|
134
107
|
return newUUID;
|
|
135
108
|
};
|
|
136
|
-
const targetsToUpdate = pbxProject
|
|
109
|
+
const targetsToUpdate = pbxProject
|
|
110
|
+
.getFirstProject()
|
|
111
|
+
.firstProject.targets.filter((target) => {
|
|
137
112
|
const targetUuid = target.value;
|
|
138
|
-
const targetName = pbxNativeTarget[targetUuid]
|
|
139
|
-
if (targetName === undefined) {
|
|
140
|
-
return false;
|
|
141
|
-
}
|
|
113
|
+
const targetName = pbxNativeTarget[targetUuid].name;
|
|
142
114
|
if (!xcodeProjectTargets) {
|
|
143
115
|
// If the xcodeProjectTargets are not provided, default to the main target
|
|
144
116
|
return targetName === getMainTargetName(inlineModulesXcodeParams);
|
|
145
117
|
}
|
|
146
118
|
return xcodeProjectTargets.has(targetName);
|
|
147
119
|
});
|
|
148
|
-
for (const watchedDirectory of swiftWatchedDirectories){
|
|
120
|
+
for (const watchedDirectory of swiftWatchedDirectories) {
|
|
149
121
|
const dirUUID = getOrCreateWatchedDirectoryUUID(watchedDirectory);
|
|
150
|
-
for (const target of targetsToUpdate){
|
|
122
|
+
for (const target of targetsToUpdate) {
|
|
151
123
|
const nativeTargetGroup = objects.PBXNativeTarget[target.value];
|
|
152
124
|
addWatchedDirectoryToTarget(target.value, nativeTargetGroup, watchedDirectory, dirUUID);
|
|
153
125
|
}
|
|
154
126
|
}
|
|
155
|
-
await
|
|
127
|
+
await fs_1.default.promises.writeFile(pbxProject.filepath, pbxProject.writeSync());
|
|
156
128
|
}
|
|
157
|
-
|
|
158
|
-
//# sourceMappingURL=xcodeProjectUpdates.js.map
|
|
129
|
+
//# sourceMappingURL=xcodeProjectUpdates.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"
|
|
1
|
+
{"version":3,"file":"xcodeProjectUpdates.js","sourceRoot":"","sources":["../src/xcodeProjectUpdates.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@expo/inline-modules",
|
|
3
|
-
"version": "0.1.0
|
|
3
|
+
"version": "0.1.0",
|
|
4
4
|
"description": "The Expo inline modules",
|
|
5
5
|
"main": "build/index.js",
|
|
6
|
-
"types": "build/index.d.ts",
|
|
7
6
|
"files": [
|
|
8
7
|
"build"
|
|
9
8
|
],
|
|
@@ -23,21 +22,19 @@
|
|
|
23
22
|
"url": "https://github.com/expo/expo/issues"
|
|
24
23
|
},
|
|
25
24
|
"dependencies": {
|
|
26
|
-
"@expo/config-plugins": "
|
|
25
|
+
"@expo/config-plugins": "~57.0.0"
|
|
27
26
|
},
|
|
28
27
|
"devDependencies": {
|
|
29
28
|
"@types/jest": "^29.2.1",
|
|
30
29
|
"@types/node": "^22.14.0",
|
|
31
|
-
"expo-module-scripts": "56.0.
|
|
30
|
+
"expo-module-scripts": "56.0.3"
|
|
32
31
|
},
|
|
33
|
-
"gitHead": "
|
|
32
|
+
"gitHead": "e3eb896c5fdcd89e0cded98ff4e35c9db12cc9c0",
|
|
34
33
|
"scripts": {
|
|
35
|
-
"build": "expo-build
|
|
34
|
+
"build": "expo-module build",
|
|
36
35
|
"clean": "expo-module clean",
|
|
37
36
|
"lint": "expo-module lint",
|
|
38
|
-
"test": "
|
|
39
|
-
"expo-module": "expo-module"
|
|
40
|
-
"depscheck": "expo-module depscheck",
|
|
41
|
-
"typecheck": "tsc -p tsconfig.json"
|
|
37
|
+
"test": "expo-module test",
|
|
38
|
+
"expo-module": "expo-module"
|
|
42
39
|
}
|
|
43
40
|
}
|