fix(core): update

This commit is contained in:
2021-04-26 08:30:02 +00:00
parent 71abbbb5f1
commit 95ffb06e77
9 changed files with 684 additions and 129 deletions

View File

@@ -0,0 +1,11 @@
import * as plugins from './smartnpm.plugins';
export class PackageDisttag {
name: string;
targetVersion: string;
constructor(nameArg: string, targetVersionArg: string) {
this.name = nameArg;
this.targetVersion = targetVersionArg;
}
}