Skip to content

Commit

Permalink
chore(cordova-build): remove type cast
Browse files Browse the repository at this point in the history
  • Loading branch information
wand1252 committed Apr 9, 2019
1 parent d82106b commit def8fc5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion builders/cordova-build/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export class CordovaBuildBuilder implements Builder<CordovaBuildBuilderSchema> {
const cordovaBasePath = normalize(options.cordovaBasePath ? options.cordovaBasePath : '.');

if (typeof options.sourceMap !== 'undefined') {
browserOptions.sourceMap = options.sourceMap as any;
browserOptions.sourceMap = options.sourceMap;
}

// We always need to output the build to `www` because it is a hard
Expand Down

0 comments on commit def8fc5

Please sign in to comment.