Skip to content

Commit aabb504

Browse files
Gary GambillGary Gambill
Gary Gambill
authored and
Gary Gambill
committed
pinned webpack dependency in generator
1 parent cd93956 commit aabb504

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

Diff for: generator/index.js

+9-5
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,8 @@ module.exports = async (api, options, rootOptions) => {
8888
'node-sass': '^4.11.0',
8989
'string-replace-loader': '^2.1.1',
9090
rimraf: '^2.6.3',
91-
webpack: '^4.29.6',
92-
'webpack-cli': '^3.3.0'
91+
webpack: '4.28.4',
92+
'webpack-cli': '^3.3.2'
9393
}
9494
});
9595

@@ -278,9 +278,13 @@ module.exports = async (api, options, rootOptions) => {
278278
await tslintSetup(genConfig.dirPathPrefix, api.resolve('tslint.json'), genConfig.tsExclusionArray);
279279

280280
const baseDir = genConfig.nativeAppPathModifier;
281-
require('../lib/tslint')({
282-
'_': [`${baseDir}**/*.ts`, `${baseDir}**/*.vue`, `${baseDir}**/*.tsx`, 'tests/**/*.ts', 'tests/**/*.tsx']
283-
}, api, false);
281+
require('../lib/tslint')(
282+
{
283+
_: [`${baseDir}**/*.ts`, `${baseDir}**/*.vue`, `${baseDir}**/*.tsx`, 'tests/**/*.ts', 'tests/**/*.tsx']
284+
},
285+
api,
286+
false
287+
);
284288
}
285289
}
286290

0 commit comments

Comments
 (0)