Skip to content

Commit 0f697eb

Browse files
author
Murat
committed
fix(variables): support dot in variable names
1 parent 0de59f3 commit 0f697eb

33 files changed

+76
-114
lines changed

package-lock.json

+61
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+4
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,9 @@
5656
"commander": "^13.1.0",
5757
"glob": "^11.0.1",
5858
"isomorphic-fetch": "^3.0.0",
59+
"lodash.get": "^4.4.2",
5960
"lodash.mergewith": "^4.6.2",
61+
"lodash.set": "^4.3.2",
6062
"picocolors": "^1.1.1",
6163
"prettier": "^3.5.1",
6264
"semver": "^7.7.1",
@@ -69,7 +71,9 @@
6971
"@ryansonshine/commitizen": "^4.2.8",
7072
"@ryansonshine/cz-conventional-changelog": "^3.3.4",
7173
"@types/jest": "^29.5.14",
74+
"@types/lodash.get": "^4.4.9",
7275
"@types/lodash.mergewith": "^4.6.9",
76+
"@types/lodash.set": "^4.3.9",
7377
"@types/node": "^22.13.4",
7478
"@types/prettier": "^3.0.0",
7579
"@types/semver": "^7.5.8",

src/__tests__/unit/tasks/shellTask.spec.ts

+3
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,7 @@ describe('shellTask', () => {
144144
mockSpawn.mockReset();
145145
});
146146
it('should handle non zero exit code', async () => {
147+
mockSpawn.mockReset();
147148
mockSpawn.mockImplementationOnce(() => ({
148149
on: (_event: string, cb: (...args: any[]) => void) => {
149150
cb(1);
@@ -183,6 +184,7 @@ describe('shellTask', () => {
183184
mockSpawn.mockReset();
184185
});
185186
it('should skip when condition does not meet', async () => {
187+
mockSpawn.mockReset();
186188
const task: ShellTaskType = {
187189
task: 'shell',
188190
actions: [
@@ -205,6 +207,7 @@ describe('shellTask', () => {
205207
mockSpawn.mockReset();
206208
});
207209
it('should skip when execution not allowed', async () => {
210+
mockSpawn.mockReset();
208211
mockPrompter.confirm.mockClear();
209212
mockPrompter.confirm.mockReturnValueOnce(false);
210213

src/__tests__/unit/utils/setState.spec.ts

-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ describe('setState', () => {
1212
} as TaskState);
1313
setState('test', {
1414
state: 'done',
15-
error: false,
1615
});
1716
expect(variables.get<TaskState>('test')).toEqual({
1817
state: 'skipped',

src/integrate.ts

-4
Original file line numberDiff line numberDiff line change
@@ -263,14 +263,12 @@ export async function integrate(packageName?: string): Promise<void> {
263263
if (task.when && !checkCondition(task.when)) {
264264
setState(task.name, {
265265
state: 'skipped',
266-
error: false,
267266
});
268267
continue;
269268
}
270269

271270
setState(task.name, {
272271
state: 'progress',
273-
error: false,
274272
});
275273

276274
const isNonSystemTask = !taskManager.isSystemTask(task.task);
@@ -294,7 +292,6 @@ export async function integrate(packageName?: string): Promise<void> {
294292

295293
setState(task.name, {
296294
state: 'done',
297-
error: false,
298295
});
299296
await logInfoNote(task.postInfo);
300297
} catch (e) {
@@ -305,7 +302,6 @@ export async function integrate(packageName?: string): Promise<void> {
305302
setState(task.name, {
306303
state: 'error',
307304
reason: errMessage,
308-
error: true,
309305
});
310306
}
311307
}

src/tasks/androidManifestTask.ts

-4
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,12 @@ export async function androidManifestTask(args: {
4040
setState(action.name, {
4141
state: 'skipped',
4242
reason: 'when',
43-
error: false,
4443
});
4544
continue;
4645
}
4746

4847
setState(action.name, {
4948
state: 'progress',
50-
error: false,
5149
});
5250
try {
5351
const additionalModification = (args: {
@@ -67,13 +65,11 @@ export async function androidManifestTask(args: {
6765

6866
setState(action.name, {
6967
state: 'done',
70-
error: false,
7168
});
7269
} catch (e) {
7370
setState(action.name, {
7471
state: 'error',
7572
reason: getErrMessage(e),
76-
error: true,
7773
});
7874
throw e;
7975
}

src/tasks/appDelegateTask.ts

-4
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,12 @@ export async function appDelegateTask(args: {
3131
setState(action.name, {
3232
state: 'skipped',
3333
reason: 'when',
34-
error: false,
3534
});
3635
continue;
3736
}
3837

3938
setState(action.name, {
4039
state: 'progress',
41-
error: false,
4240
});
4341
try {
4442
content = await applyContentModification({
@@ -52,13 +50,11 @@ export async function appDelegateTask(args: {
5250

5351
setState(action.name, {
5452
state: 'done',
55-
error: false,
5653
});
5754
} catch (e) {
5855
setState(action.name, {
5956
state: 'error',
6057
reason: getErrMessage(e),
61-
error: true,
6258
});
6359
throw e;
6460
}

src/tasks/babelConfigTask.ts

-6
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,12 @@ export async function babelConfigTask(args: {
3333
setState(action.name, {
3434
state: 'skipped',
3535
reason: 'when',
36-
error: false,
3736
});
3837
continue;
3938
}
4039

4140
setState(action.name, {
4241
state: 'progress',
43-
error: false,
4442
});
4543
try {
4644
if ('mode' in action && action.mode === 'text') {
@@ -58,13 +56,11 @@ export async function babelConfigTask(args: {
5856
}
5957
setState(action.name, {
6058
state: 'done',
61-
error: false,
6259
});
6360
} catch (e) {
6461
setState(action.name, {
6562
state: 'error',
6663
reason: getErrMessage(e),
67-
error: true,
6864
});
6965
throw e;
7066
}
@@ -123,7 +119,6 @@ export function shouldApplyInsertion(
123119
setState(action.name, {
124120
state: 'skipped',
125121
reason: 'insert.ifNotPresent',
126-
error: false,
127122
});
128123
return false;
129124
}
@@ -134,7 +129,6 @@ export function shouldApplyInsertion(
134129
setState(action.name, {
135130
state: 'skipped',
136131
reason: 'insert.exists',
137-
error: false,
138132
});
139133
return false;
140134
}

src/tasks/buildGradleTask.ts

-4
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,12 @@ export async function buildGradleTask(args: {
3030
setState(action.name, {
3131
state: 'skipped',
3232
reason: 'when',
33-
error: false,
3433
});
3534
continue;
3635
}
3736

3837
setState(action.name, {
3938
state: 'progress',
40-
error: false,
4139
});
4240
try {
4341
content = await applyContentModification({
@@ -50,13 +48,11 @@ export async function buildGradleTask(args: {
5048
});
5149
setState(action.name, {
5250
state: 'done',
53-
error: false,
5451
});
5552
} catch (e) {
5653
setState(action.name, {
5754
state: 'error',
5855
reason: getErrMessage(e),
59-
error: true,
6056
});
6157
throw e;
6258
}

src/tasks/fsTask.ts

-4
Original file line numberDiff line numberDiff line change
@@ -24,26 +24,22 @@ export async function fsTask(args: {
2424
setState(action.name, {
2525
state: 'skipped',
2626
reason: 'when',
27-
error: false,
2827
});
2928
continue;
3029
}
3130

3231
setState(action.name, {
3332
state: 'progress',
34-
error: false,
3533
});
3634
try {
3735
await applyFsModification(action, packageName);
3836
setState(action.name, {
3937
state: 'done',
40-
error: false,
4138
});
4239
} catch (e) {
4340
setState(action.name, {
4441
state: 'error',
4542
reason: getErrMessage(e),
46-
error: true,
4743
});
4844
throw e;
4945
}

0 commit comments

Comments
 (0)