mirror of
https://github.com/hashicorp/vault-action.git
synced 2025-11-07 15:16:56 +00:00
remove unused import that was breaking esm compilation
This commit is contained in:
parent
43c11c34b4
commit
4bafe0b29f
9 changed files with 0 additions and 20 deletions
11
dist/index.js
vendored
11
dist/index.js
vendored
|
|
@ -18430,14 +18430,6 @@ function wrappy (fn, cb) {
|
|||
}
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 8081:
|
||||
/***/ ((module) => {
|
||||
|
||||
module.exports = eval("require")("@actions/core/lib/command");
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 9491:
|
||||
|
|
@ -18603,8 +18595,6 @@ var __webpack_exports__ = {};
|
|||
|
||||
// EXTERNAL MODULE: ./node_modules/@actions/core/lib/core.js
|
||||
var core = __nccwpck_require__(2186);
|
||||
// EXTERNAL MODULE: ./node_modules/@vercel/ncc/dist/ncc/@@notfound.js?@actions/core/lib/command
|
||||
var command = __nccwpck_require__(8081);
|
||||
// EXTERNAL MODULE: ./node_modules/got/dist/source/index.js
|
||||
var source = __nccwpck_require__(3061);
|
||||
// EXTERNAL MODULE: ./node_modules/jsonata/jsonata.js
|
||||
|
|
@ -18977,7 +18967,6 @@ const selectAndAppendResults = async (
|
|||
|
||||
|
||||
|
||||
|
||||
const AUTH_METHODS = ['approle', 'token', 'github', 'jwt', 'kubernetes', 'ldap', 'userpass'];
|
||||
const ENCODING_TYPES = ['base64', 'hex', 'utf8'];
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,6 @@
|
|||
import { vi, describe, test, expect } from 'vitest';
|
||||
|
||||
vi.mock('@actions/core');
|
||||
vi.mock('@actions/core/lib/command');
|
||||
import * as core from '@actions/core';
|
||||
|
||||
import got from 'got';
|
||||
|
|
|
|||
|
|
@ -1,7 +1,6 @@
|
|||
import { vi, describe, test, expect } from 'vitest';
|
||||
|
||||
vi.mock('@actions/core');
|
||||
vi.mock('@actions/core/lib/command');
|
||||
import * as core from '@actions/core';
|
||||
|
||||
import got from 'got';
|
||||
|
|
|
|||
|
|
@ -1,7 +1,6 @@
|
|||
import { vi, describe, test, expect } from 'vitest';
|
||||
|
||||
vi.mock('@actions/core');
|
||||
vi.mock('@actions/core/lib/command');
|
||||
import * as core from '@actions/core';
|
||||
import rsasign from 'jsrsasign';
|
||||
import {
|
||||
|
|
|
|||
|
|
@ -1,7 +1,6 @@
|
|||
import { vi, describe, test, expect } from 'vitest';
|
||||
|
||||
vi.mock('@actions/core');
|
||||
vi.mock('@actions/core/lib/command');
|
||||
import * as core from '@actions/core';
|
||||
|
||||
import got from 'got';
|
||||
|
|
|
|||
|
|
@ -1,7 +1,6 @@
|
|||
import { vi, describe, test, expect } from 'vitest';
|
||||
|
||||
vi.mock('@actions/core');
|
||||
vi.mock('@actions/core/lib/command');
|
||||
import * as core from '@actions/core';
|
||||
|
||||
import got from 'got';
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
// @ts-check
|
||||
import * as core from '@actions/core';
|
||||
import * as command from '@actions/core/lib/command';
|
||||
import got from 'got';
|
||||
import jsonata from 'jsonata';
|
||||
import { normalizeOutputKey } from './utils.js';
|
||||
|
|
|
|||
|
|
@ -2,9 +2,7 @@ import { vi, describe, test, expect } from 'vitest';
|
|||
|
||||
vi.mock('got');
|
||||
vi.mock('@actions/core');
|
||||
vi.mock('@actions/core/lib/command');
|
||||
|
||||
import * as command from '@actions/core/lib/command';
|
||||
import * as core from '@actions/core';
|
||||
import got from 'got';
|
||||
import {
|
||||
|
|
|
|||
|
|
@ -2,7 +2,6 @@ import { vi, describe, test, expect } from 'vitest';
|
|||
|
||||
vi.mock('got');
|
||||
vi.mock('@actions/core');
|
||||
vi.mock('@actions/core/lib/command');
|
||||
vi.mock('fs', () => ({
|
||||
stat: vi.fn().mockResolvedValue(null),
|
||||
promises: {
|
||||
|
|
|
|||
Loading…
Reference in a new issue