fix: disable files field sync

This commit is contained in:
Ivan Shmidt
2020-11-10 15:10:41 +01:00
parent cd8645511e
commit c58fa2cb13
2 changed files with 7 additions and 3 deletions
+6 -1
View File
@@ -61,7 +61,12 @@ class PackageJsonHandler {
await this.syncField('main:src');
}
await this.syncField('types');
await this.syncField('files');
// shmidt-i: Skipping `files` for now,
// need more info how to handle
// and what to allow
// await this.syncField('files');
await this.syncScripts();
await this.syncPublishConfig();
await this.syncDependencies('dependencies');
@@ -46,7 +46,6 @@
"cross-fetch": "^3.0.6"
},
"files": [
"dist",
"universal"
"dist"
]
}