You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
*[Implemented #5060](https://github.com/NativeScript/nativescript-cli/issues/5060): Kotlin usage tracking in android builds
23
+
*[Implemented #5096](https://github.com/NativeScript/nativescript-cli/issues/5096): Reduce the npm requests when checking if the project should be migrated
24
+
*[Implemented #5104](https://github.com/NativeScript/nativescript-cli/pull/5104): Allow tag and range versions in the preview app plugin versions validation
25
+
*[Implemented #5107](https://github.com/NativeScript/nativescript-cli/issues/5107): Support V8 Snapshots on Windows
26
+
27
+
### Fixed
28
+
*[Fixed #3785](https://github.com/NativeScript/nativescript-cli/issues/3785): NativeScript CLI doesn't pause on webpack compilation errors
29
+
*[Fixed #4681](https://github.com/NativeScript/nativescript-cli/issues/4681): `tns update ios` is not working
30
+
*[Fixed #4963](https://github.com/NativeScript/nativescript-cli/issues/4963): Difference in hookArgs.prepareData.platform on prepare and run command
31
+
*[Fixed #4995](https://github.com/NativeScript/nativescript-cli/issues/4995): Building plugin and running demo app fails if plugins has a surrounding gradle build
32
+
*[Fixed #5005](https://github.com/NativeScript/nativescript-cli/issues/5005): Apple Watch extension with space in the name of `.entitlements` file is not working
33
+
*[Fixed #5020](https://github.com/NativeScript/nativescript-cli/issues/5020): Stuck at "Restarting application on device" on Windows 10, iPad mini 2, compiled with NativeScript Sidekick cloud service.
34
+
*[Fixed #5030](https://github.com/NativeScript/nativescript-cli/issues/5030): The `tns devices` command lists appletv as iOS platform
35
+
*[Fixed #5034](https://github.com/NativeScript/nativescript-cli/issues/5034): Broken build when passing --i-cloud-container-environment
36
+
*[Fixed #5056](https://github.com/NativeScript/nativescript-cli/issues/5056): Unable to process native iOS files and frameworks from scoped packages
37
+
*[Fixed #5061](https://github.com/NativeScript/nativescript-cli/issues/5061): Unable to resolve cocoapods version conflicts
38
+
*[Fixed #5063](https://github.com/NativeScript/nativescript-cli/issues/5063): Splash Screen asset generation fails for iOS
39
+
*[Fixed #5070](https://github.com/NativeScript/nativescript-cli/issues/5070): The `tns test` command cannot work if the source code is not in `src` or `app` folder
40
+
*[Fixed #5077](https://github.com/NativeScript/nativescript-cli/pull/5077): Pass allowProvisioningUpdates to xcodebuild only when building for device
41
+
*[Fixed #5094](https://github.com/NativeScript/nativescript-cli/issues/5094): Add Theme v2 name to non-extenal modules when starting webpack
Copy file name to clipboardExpand all lines: lib/services/project-data-service.ts
+9-2
Original file line number
Diff line number
Diff line change
@@ -282,8 +282,15 @@ export class ProjectDataService implements IProjectDataService {
282
282
}
283
283
});
284
284
285
-
if(!foundMatchingDefinition&&image.filename){
286
-
this.$logger.warn(`Didn't find a matching image definition for file ${path.join(path.basename(dirPath),image.filename)}. This file will be skipped from reources generation.`);
285
+
if(!foundMatchingDefinition){
286
+
if(image.height&&image.width){
287
+
this.$logger.trace("Missing data for image",image," in CLI's resource file, but we will try to generate images based on the size from Contents.json");
288
+
finalContent.images.push(image);
289
+
}elseif(image.filename){
290
+
this.$logger.warn(`Didn't find a matching image definition for file ${path.join(path.basename(dirPath),image.filename)}. This file will be skipped from resources generation.`);
291
+
}else{
292
+
this.$logger.trace(`Unable to detect data for image generation of image`,image);
0 commit comments