This commit is contained in:
Opportunity
2020-07-17 11:55:08 +08:00
Unverified
parent fad1ce1d16
commit 00df9418a5
4 changed files with 31 additions and 37 deletions
+6 -6
View File
@@ -1,10 +1,10 @@
import core from '@actions/core';
import * as core from '@actions/core';
import { exec } from '@actions/exec';
import io from '@actions/io';
import toolCache from '@actions/tool-cache';
import os from 'os';
import path from 'path';
import semver from 'semver';
import * as io from '@actions/io';
import * as toolCache from '@actions/tool-cache';
import * as os from 'os';
import * as path from 'path';
import * as semver from 'semver';
import * as git from './git';
import { Version } from './interfaces';
+2 -2
View File
@@ -1,8 +1,8 @@
import * as core from '@actions/core';
import semver from 'semver';
import * as semver from 'semver';
import { lsRemote } from './git';
import { RefDic, Sha, Version, Repo, GitVersion, LocalVersion } from './interfaces';
import p from 'path';
import * as p from 'path';
const DEFAULT_REPO = Repo('xmake-io/xmake');