Compare commits

...

1 Commits

Author SHA1 Message Date
igorklopov
68e685e028 [build-utils] framework can be null as default 2021-05-08 21:15:56 +03:00

View File

@@ -474,7 +474,7 @@ function detectFrontBuilder(
if (
pkg &&
(framework === undefined || createdAt < Date.parse('2020-03-01'))
(!framework || createdAt < Date.parse('2020-03-01'))
) {
const deps: PackageJson['dependencies'] = {
...pkg.dependencies,