@@ -99,6 +99,7 @@ export class ProjectData implements IProjectData {
99
99
public podfilePath : string ;
100
100
public isShared : boolean ;
101
101
public webpackConfigPath : string ;
102
+ public bundlerConfigPath : string ;
102
103
public initialized : boolean ;
103
104
104
105
constructor (
@@ -110,7 +111,7 @@ export class ProjectData implements IProjectData {
110
111
private $logger : ILogger ,
111
112
private $injector : IInjector ,
112
113
private $androidResourcesMigrationService : IAndroidResourcesMigrationService ,
113
- private $devicePlatformsConstants : Mobile . IDevicePlatformsConstants
114
+ private $devicePlatformsConstants : Mobile . IDevicePlatformsConstants ,
114
115
) { }
115
116
116
117
get projectConfig ( ) : IProjectConfigService {
@@ -142,7 +143,7 @@ export class ProjectData implements IProjectData {
142
143
143
144
public initializeProjectDataFromContent (
144
145
packageJsonContent : string ,
145
- projectDir ?: string
146
+ projectDir ?: string ,
146
147
) : void {
147
148
projectDir = projectDir || this . $projectHelper . projectDir || "" ;
148
149
this . projectDir = projectDir ;
@@ -157,7 +158,7 @@ export class ProjectData implements IProjectData {
157
158
this . $errors . fail (
158
159
`The project file ${ this . projectFilePath } is corrupted. ${ EOL } ` +
159
160
`Consider restoring an earlier version from your source control or backup.${ EOL } ` +
160
- `Additional technical info: ${ err . toString ( ) } `
161
+ `Additional technical info: ${ err . toString ( ) } ` ,
161
162
) ;
162
163
}
163
164
@@ -178,36 +179,40 @@ export class ProjectData implements IProjectData {
178
179
this . appDirectoryPath = this . getAppDirectoryPath ( ) ;
179
180
this . appResourcesDirectoryPath = this . getAppResourcesDirectoryPath ( ) ;
180
181
this . androidManifestPath = this . getPathToAndroidManifest (
181
- this . appResourcesDirectoryPath
182
+ this . appResourcesDirectoryPath ,
182
183
) ;
183
184
this . gradleFilesDirectoryPath = path . join (
184
185
this . appResourcesDirectoryPath ,
185
- this . $devicePlatformsConstants . Android
186
+ this . $devicePlatformsConstants . Android ,
186
187
) ;
187
188
this . appGradlePath = path . join (
188
189
this . gradleFilesDirectoryPath ,
189
- constants . APP_GRADLE_FILE_NAME
190
+ constants . APP_GRADLE_FILE_NAME ,
190
191
) ;
191
192
this . infoPlistPath = path . join (
192
193
this . appResourcesDirectoryPath ,
193
194
this . $devicePlatformsConstants . iOS ,
194
- constants . INFO_PLIST_FILE_NAME
195
+ constants . INFO_PLIST_FILE_NAME ,
195
196
) ;
196
197
this . buildXcconfigPath = path . join (
197
198
this . appResourcesDirectoryPath ,
198
199
this . $devicePlatformsConstants . iOS ,
199
- constants . BUILD_XCCONFIG_FILE_NAME
200
+ constants . BUILD_XCCONFIG_FILE_NAME ,
200
201
) ;
201
202
this . podfilePath = path . join (
202
203
this . appResourcesDirectoryPath ,
203
204
this . $devicePlatformsConstants . iOS ,
204
- constants . PODFILE_NAME
205
+ constants . PODFILE_NAME ,
205
206
) ;
206
207
this . isShared = ! ! ( this . nsConfig && this . nsConfig . shared ) ;
207
208
this . webpackConfigPath =
208
209
this . nsConfig && this . nsConfig . webpackConfigPath
209
210
? path . resolve ( this . projectDir , this . nsConfig . webpackConfigPath )
210
211
: path . join ( this . projectDir , "webpack.config.js" ) ;
212
+ this . bundlerConfigPath =
213
+ this . nsConfig && this . nsConfig . bundlerConfigPath
214
+ ? path . resolve ( this . projectDir , this . nsConfig . bundlerConfigPath )
215
+ : null ;
211
216
return ;
212
217
}
213
218
@@ -217,7 +222,7 @@ export class ProjectData implements IProjectData {
217
222
private getPathToAndroidManifest ( appResourcesDir : string ) : string {
218
223
const androidDirPath = path . join (
219
224
appResourcesDir ,
220
- this . $devicePlatformsConstants . Android
225
+ this . $devicePlatformsConstants . Android ,
221
226
) ;
222
227
const androidManifestDir =
223
228
this . $androidResourcesMigrationService . hasMigrated ( appResourcesDir )
@@ -230,13 +235,13 @@ export class ProjectData implements IProjectData {
230
235
private errorInvalidProject ( projectDir : string ) : void {
231
236
const currentDir = path . resolve ( "." ) ;
232
237
this . $logger . trace (
233
- `Unable to find project. projectDir: ${ projectDir } , options.path: ${ this . $options . path } , ${ currentDir } `
238
+ `Unable to find project. projectDir: ${ projectDir } , options.path: ${ this . $options . path } , ${ currentDir } ` ,
234
239
) ;
235
240
236
241
// This is the case when no project file found
237
242
this . $errors . fail (
238
243
"No project found at or above '%s' and neither was a --path specified." ,
239
- projectDir || this . $options . path || currentDir
244
+ projectDir || this . $options . path || currentDir ,
240
245
) ;
241
246
}
242
247
@@ -291,7 +296,7 @@ export class ProjectData implements IProjectData {
291
296
292
297
private resolveToProjectDir (
293
298
pathToResolve : string ,
294
- projectDir ?: string
299
+ projectDir ?: string ,
295
300
) : string {
296
301
if ( ! projectDir ) {
297
302
projectDir = this . projectDir ;
@@ -306,7 +311,7 @@ export class ProjectData implements IProjectData {
306
311
307
312
@cache ( )
308
313
private initializeProjectIdentifiers (
309
- config : INsConfig
314
+ config : INsConfig ,
310
315
) : Mobile . IProjectIdentifier {
311
316
this . $logger . trace ( `Initializing project identifiers. Config: ` , config ) ;
312
317
@@ -341,18 +346,18 @@ export class ProjectData implements IProjectData {
341
346
private getProjectType ( ) : string {
342
347
let detectedProjectType = _ . find (
343
348
ProjectData . PROJECT_TYPES ,
344
- ( projectType ) => projectType . isDefaultProjectType
349
+ ( projectType ) => projectType . isDefaultProjectType ,
345
350
) . type ;
346
351
347
352
const deps : string [ ] = _ . keys ( this . dependencies ) . concat (
348
- _ . keys ( this . devDependencies )
353
+ _ . keys ( this . devDependencies ) ,
349
354
) ;
350
355
351
356
_ . each ( ProjectData . PROJECT_TYPES , ( projectType ) => {
352
357
if (
353
358
_ . some (
354
359
projectType . requiredDependencies ,
355
- ( requiredDependency ) => deps . indexOf ( requiredDependency ) !== - 1
360
+ ( requiredDependency ) => deps . indexOf ( requiredDependency ) !== - 1 ,
356
361
)
357
362
) {
358
363
detectedProjectType = projectType . type ;
@@ -366,7 +371,7 @@ export class ProjectData implements IProjectData {
366
371
@cache ( )
367
372
private warnProjectId ( ) : void {
368
373
this . $logger . warn (
369
- "[WARNING]: IProjectData.projectId is deprecated. Please use IProjectData.projectIdentifiers[platform]."
374
+ "[WARNING]: IProjectData.projectId is deprecated. Please use IProjectData.projectIdentifiers[platform]." ,
370
375
) ;
371
376
}
372
377
}
0 commit comments