Trims commitId

This commit is contained in:
Henning Dieterichs 2023-02-09 18:42:15 +01:00
parent beed7d171a
commit f9c53f16a5
No known key found for this signature in database
GPG key ID: 771381EFFDB9EC06
4 changed files with 10 additions and 11 deletions

View file

@ -1,7 +1,6 @@
import { mkdir, rm } from 'fs/promises';
import { join, resolve } from 'path';
import { group, gitShallowClone, run, writeJsonFile, getNightlyVersion } from '../lib';
import { PackageJson } from './types';
import { PackageJson, group, gitShallowClone, run, writeJsonFile, getNightlyVersion } from '../lib';
const selfPath = __dirname;
const rootPath = join(selfPath, '..', '..');

View file

@ -1,7 +1,6 @@
import { readFile } from 'fs/promises';
import { join, resolve } from 'path';
import { getNightlyVersion, group, run, writeJsonFile } from '../lib';
import { PackageJson } from './types';
import { PackageJson, getNightlyVersion, group, run, writeJsonFile } from '../lib';
const selfPath = __dirname;
const rootPath = join(selfPath, '..', '..');

View file

@ -1,6 +0,0 @@
export interface PackageJson {
version: string;
vscodeRef?: string;
vscodeCommitId?: string;
devDependencies: Record<string, string>;
}