mirror of
				https://gitea.com/actions/upload-artifact.git
				synced 2025-10-29 16:18:15 +07:00 
			
		
		
		
	update dist
This commit is contained in:
		
							parent
							
								
									bdfe531d8f
								
							
						
					
					
						commit
						d2e7727e56
					
				
							
								
								
									
										188
									
								
								dist/merge/index.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										188
									
								
								dist/merge/index.js
									
									
									
									
										vendored
									
									
								
							| @ -1,6 +1,182 @@ | ||||
| /******/ (() => { // webpackBootstrap
 | ||||
| /******/ 	var __webpack_modules__ = ({ | ||||
| 
 | ||||
| /***/ 98818: | ||||
| /***/ ((module) => { | ||||
| 
 | ||||
| "use strict"; | ||||
| 
 | ||||
| 
 | ||||
| module.exports = (flag, argv = process.argv) => { | ||||
| 	const prefix = flag.startsWith('-') ? '' : (flag.length === 1 ? '-' : '--'); | ||||
| 	const position = argv.indexOf(prefix + flag); | ||||
| 	const terminatorPosition = argv.indexOf('--'); | ||||
| 	return position !== -1 && (terminatorPosition === -1 || position < terminatorPosition); | ||||
| }; | ||||
| 
 | ||||
| 
 | ||||
| /***/ }), | ||||
| 
 | ||||
| /***/ 32957: | ||||
| /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { | ||||
| 
 | ||||
| "use strict"; | ||||
| 
 | ||||
| const os = __nccwpck_require__(22037); | ||||
| const tty = __nccwpck_require__(76224); | ||||
| const hasFlag = __nccwpck_require__(98818); | ||||
| 
 | ||||
| const {env} = process; | ||||
| 
 | ||||
| let flagForceColor; | ||||
| if (hasFlag('no-color') || | ||||
| 	hasFlag('no-colors') || | ||||
| 	hasFlag('color=false') || | ||||
| 	hasFlag('color=never')) { | ||||
| 	flagForceColor = 0; | ||||
| } else if (hasFlag('color') || | ||||
| 	hasFlag('colors') || | ||||
| 	hasFlag('color=true') || | ||||
| 	hasFlag('color=always')) { | ||||
| 	flagForceColor = 1; | ||||
| } | ||||
| 
 | ||||
| function envForceColor() { | ||||
| 	if ('FORCE_COLOR' in env) { | ||||
| 		if (env.FORCE_COLOR === 'true') { | ||||
| 			return 1; | ||||
| 		} | ||||
| 
 | ||||
| 		if (env.FORCE_COLOR === 'false') { | ||||
| 			return 0; | ||||
| 		} | ||||
| 
 | ||||
| 		return env.FORCE_COLOR.length === 0 ? 1 : Math.min(Number.parseInt(env.FORCE_COLOR, 10), 3); | ||||
| 	} | ||||
| } | ||||
| 
 | ||||
| function translateLevel(level) { | ||||
| 	if (level === 0) { | ||||
| 		return false; | ||||
| 	} | ||||
| 
 | ||||
| 	return { | ||||
| 		level, | ||||
| 		hasBasic: true, | ||||
| 		has256: level >= 2, | ||||
| 		has16m: level >= 3 | ||||
| 	}; | ||||
| } | ||||
| 
 | ||||
| function supportsColor(haveStream, {streamIsTTY, sniffFlags = true} = {}) { | ||||
| 	const noFlagForceColor = envForceColor(); | ||||
| 	if (noFlagForceColor !== undefined) { | ||||
| 		flagForceColor = noFlagForceColor; | ||||
| 	} | ||||
| 
 | ||||
| 	const forceColor = sniffFlags ? flagForceColor : noFlagForceColor; | ||||
| 
 | ||||
| 	if (forceColor === 0) { | ||||
| 		return 0; | ||||
| 	} | ||||
| 
 | ||||
| 	if (sniffFlags) { | ||||
| 		if (hasFlag('color=16m') || | ||||
| 			hasFlag('color=full') || | ||||
| 			hasFlag('color=truecolor')) { | ||||
| 			return 3; | ||||
| 		} | ||||
| 
 | ||||
| 		if (hasFlag('color=256')) { | ||||
| 			return 2; | ||||
| 		} | ||||
| 	} | ||||
| 
 | ||||
| 	if (haveStream && !streamIsTTY && forceColor === undefined) { | ||||
| 		return 0; | ||||
| 	} | ||||
| 
 | ||||
| 	const min = forceColor || 0; | ||||
| 
 | ||||
| 	if (env.TERM === 'dumb') { | ||||
| 		return min; | ||||
| 	} | ||||
| 
 | ||||
| 	if (process.platform === 'win32') { | ||||
| 		// Windows 10 build 10586 is the first Windows release that supports 256 colors.
 | ||||
| 		// Windows 10 build 14931 is the first release that supports 16m/TrueColor.
 | ||||
| 		const osRelease = os.release().split('.'); | ||||
| 		if ( | ||||
| 			Number(osRelease[0]) >= 10 && | ||||
| 			Number(osRelease[2]) >= 10586 | ||||
| 		) { | ||||
| 			return Number(osRelease[2]) >= 14931 ? 3 : 2; | ||||
| 		} | ||||
| 
 | ||||
| 		return 1; | ||||
| 	} | ||||
| 
 | ||||
| 	if ('CI' in env) { | ||||
| 		if (['TRAVIS', 'CIRCLECI', 'APPVEYOR', 'GITLAB_CI', 'GITHUB_ACTIONS', 'BUILDKITE', 'DRONE'].some(sign => sign in env) || env.CI_NAME === 'codeship') { | ||||
| 			return 1; | ||||
| 		} | ||||
| 
 | ||||
| 		return min; | ||||
| 	} | ||||
| 
 | ||||
| 	if ('TEAMCITY_VERSION' in env) { | ||||
| 		return /^(9\.(0*[1-9]\d*)\.|\d{2,}\.)/.test(env.TEAMCITY_VERSION) ? 1 : 0; | ||||
| 	} | ||||
| 
 | ||||
| 	if (env.COLORTERM === 'truecolor') { | ||||
| 		return 3; | ||||
| 	} | ||||
| 
 | ||||
| 	if ('TERM_PROGRAM' in env) { | ||||
| 		const version = Number.parseInt((env.TERM_PROGRAM_VERSION || '').split('.')[0], 10); | ||||
| 
 | ||||
| 		switch (env.TERM_PROGRAM) { | ||||
| 			case 'iTerm.app': | ||||
| 				return version >= 3 ? 3 : 2; | ||||
| 			case 'Apple_Terminal': | ||||
| 				return 2; | ||||
| 			// No default
 | ||||
| 		} | ||||
| 	} | ||||
| 
 | ||||
| 	if (/-256(color)?$/i.test(env.TERM)) { | ||||
| 		return 2; | ||||
| 	} | ||||
| 
 | ||||
| 	if (/^screen|^xterm|^vt100|^vt220|^rxvt|color|ansi|cygwin|linux/i.test(env.TERM)) { | ||||
| 		return 1; | ||||
| 	} | ||||
| 
 | ||||
| 	if ('COLORTERM' in env) { | ||||
| 		return 1; | ||||
| 	} | ||||
| 
 | ||||
| 	return min; | ||||
| } | ||||
| 
 | ||||
| function getSupportLevel(stream, options = {}) { | ||||
| 	const level = supportsColor(stream, { | ||||
| 		streamIsTTY: stream && stream.isTTY, | ||||
| 		...options | ||||
| 	}); | ||||
| 
 | ||||
| 	return translateLevel(level); | ||||
| } | ||||
| 
 | ||||
| module.exports = { | ||||
| 	supportsColor: getSupportLevel, | ||||
| 	stdout: getSupportLevel({isTTY: tty.isatty(1)}), | ||||
| 	stderr: getSupportLevel({isTTY: tty.isatty(2)}) | ||||
| }; | ||||
| 
 | ||||
| 
 | ||||
| /***/ }), | ||||
| 
 | ||||
| /***/ 95523: | ||||
| /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { | ||||
| 
 | ||||
| @ -29933,7 +30109,7 @@ exports.colors = [6, 2, 3, 4, 5, 1]; | ||||
| try { | ||||
| 	// Optional dependency (as in, doesn't need to be installed, NOT like optionalDependencies in package.json)
 | ||||
| 	// eslint-disable-next-line import/no-extraneous-dependencies
 | ||||
| 	const supportsColor = __nccwpck_require__(30132); | ||||
| 	const supportsColor = __nccwpck_require__(32957); | ||||
| 
 | ||||
| 	if (supportsColor && (supportsColor.stderr || supportsColor).level >= 2) { | ||||
| 		exports.colors = [ | ||||
| @ -107633,14 +107809,6 @@ function uploadArtifact(artifactName, filesToUpload, rootDirectory, options) { | ||||
| } | ||||
| 
 | ||||
| 
 | ||||
| /***/ }), | ||||
| 
 | ||||
| /***/ 30132: | ||||
| /***/ ((module) => { | ||||
| 
 | ||||
| module.exports = eval("require")("supports-color"); | ||||
| 
 | ||||
| 
 | ||||
| /***/ }), | ||||
| 
 | ||||
| /***/ 39491: | ||||
| @ -162504,7 +162672,7 @@ module.exports = index; | ||||
| /***/ ((module) => { | ||||
| 
 | ||||
| "use strict"; | ||||
| module.exports = JSON.parse('{"name":"@actions/artifact","version":"3.0.0","preview":true,"description":"Actions artifact lib","keywords":["github","actions","artifact"],"homepage":"https://github.com/actions/toolkit/tree/main/packages/artifact","license":"MIT","main":"lib/artifact.js","types":"lib/artifact.d.ts","directories":{"lib":"lib","test":"__tests__"},"files":["lib","!.DS_Store"],"publishConfig":{"access":"public"},"repository":{"type":"git","url":"git+https://github.com/actions/toolkit.git","directory":"packages/artifact"},"scripts":{"audit-moderate":"npm install && npm audit --json --audit-level=moderate > audit.json","test":"cd ../../ && npm run test ./packages/artifact","bootstrap":"cd ../../ && npm run bootstrap","tsc-run":"tsc","tsc":"npm run bootstrap && npm run tsc-run","gen:docs":"typedoc --plugin typedoc-plugin-markdown --out docs/generated src/artifact.ts --githubPages false --readme none"},"bugs":{"url":"https://github.com/actions/toolkit/issues"},"dependencies":{"@actions/core":"^1.10.0","@actions/github":"^6.0.1","@actions/http-client":"^2.1.0","@azure/core-http":"^3.0.5","@azure/storage-blob":"^12.15.0","@octokit/core":"^5.2.1","@octokit/plugin-request-log":"^1.0.4","@octokit/plugin-retry":"^3.0.9","@octokit/request":"^8.4.1","@octokit/request-error":"^5.1.1","@protobuf-ts/plugin":"^2.2.3-alpha.1","archiver":"^7.0.1","jwt-decode":"^3.1.2","unzip-stream":"^0.3.1"},"devDependencies":{"@types/archiver":"^5.3.2","@types/unzip-stream":"^0.3.4","typedoc":"^0.28.13","typedoc-plugin-markdown":"^3.17.1","typescript":"^5.2.2"},"overrides":{"uri-js":"npm:uri-js-replace@^1.0.1"}}'); | ||||
| module.exports = JSON.parse('{"name":"@actions/artifact","version":"3.0.0","preview":true,"description":"Actions artifact lib","keywords":["github","actions","artifact"],"homepage":"https://github.com/actions/toolkit/tree/main/packages/artifact","license":"MIT","main":"lib/artifact.js","types":"lib/artifact.d.ts","directories":{"lib":"lib","test":"__tests__"},"files":["lib","!.DS_Store"],"publishConfig":{"access":"public"},"repository":{"type":"git","url":"git+https://github.com/actions/toolkit.git","directory":"packages/artifact"},"scripts":{"audit-moderate":"npm install && npm audit --json --audit-level=moderate > audit.json","test":"cd ../../ && npm run test ./packages/artifact","bootstrap":"cd ../../ && npm run bootstrap","tsc-run":"tsc","tsc":"npm run bootstrap && npm run tsc-run","gen:docs":"typedoc --plugin typedoc-plugin-markdown --out docs/generated src/artifact.ts --githubPages false --readme none"},"bugs":{"url":"https://github.com/actions/toolkit/issues"},"dependencies":{"@actions/core":"^1.10.0","@actions/github":"^6.0.1","@actions/http-client":"^2.1.0","@azure/core-http":"^3.0.5","@azure/storage-blob":"^12.15.0","@octokit/core":"^5.2.1","@octokit/plugin-request-log":"^1.0.4","@octokit/plugin-retry":"^3.0.9","@octokit/request":"^8.4.1","@octokit/request-error":"^5.1.1","@protobuf-ts/plugin":"^2.2.3-alpha.1","archiver":"^7.0.1","jwt-decode":"^3.1.2","unzip-stream":"^0.3.1"},"devDependencies":{"@types/archiver":"^5.3.2","@types/unzip-stream":"^0.3.4","typedoc":"^0.28.13","typedoc-plugin-markdown":"^3.17.1","typescript":"^5.2.2"},"overrides":{"uri-js":"npm:uri-js-replace@^1.0.1","node-fetch":"^3.3.2"}}'); | ||||
| 
 | ||||
| /***/ }) | ||||
| 
 | ||||
|  | ||||
							
								
								
									
										188
									
								
								dist/upload/index.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										188
									
								
								dist/upload/index.js
									
									
									
									
										vendored
									
									
								
							| @ -1,6 +1,182 @@ | ||||
| /******/ (() => { // webpackBootstrap
 | ||||
| /******/ 	var __webpack_modules__ = ({ | ||||
| 
 | ||||
| /***/ 98818: | ||||
| /***/ ((module) => { | ||||
| 
 | ||||
| "use strict"; | ||||
| 
 | ||||
| 
 | ||||
| module.exports = (flag, argv = process.argv) => { | ||||
| 	const prefix = flag.startsWith('-') ? '' : (flag.length === 1 ? '-' : '--'); | ||||
| 	const position = argv.indexOf(prefix + flag); | ||||
| 	const terminatorPosition = argv.indexOf('--'); | ||||
| 	return position !== -1 && (terminatorPosition === -1 || position < terminatorPosition); | ||||
| }; | ||||
| 
 | ||||
| 
 | ||||
| /***/ }), | ||||
| 
 | ||||
| /***/ 32957: | ||||
| /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { | ||||
| 
 | ||||
| "use strict"; | ||||
| 
 | ||||
| const os = __nccwpck_require__(22037); | ||||
| const tty = __nccwpck_require__(76224); | ||||
| const hasFlag = __nccwpck_require__(98818); | ||||
| 
 | ||||
| const {env} = process; | ||||
| 
 | ||||
| let flagForceColor; | ||||
| if (hasFlag('no-color') || | ||||
| 	hasFlag('no-colors') || | ||||
| 	hasFlag('color=false') || | ||||
| 	hasFlag('color=never')) { | ||||
| 	flagForceColor = 0; | ||||
| } else if (hasFlag('color') || | ||||
| 	hasFlag('colors') || | ||||
| 	hasFlag('color=true') || | ||||
| 	hasFlag('color=always')) { | ||||
| 	flagForceColor = 1; | ||||
| } | ||||
| 
 | ||||
| function envForceColor() { | ||||
| 	if ('FORCE_COLOR' in env) { | ||||
| 		if (env.FORCE_COLOR === 'true') { | ||||
| 			return 1; | ||||
| 		} | ||||
| 
 | ||||
| 		if (env.FORCE_COLOR === 'false') { | ||||
| 			return 0; | ||||
| 		} | ||||
| 
 | ||||
| 		return env.FORCE_COLOR.length === 0 ? 1 : Math.min(Number.parseInt(env.FORCE_COLOR, 10), 3); | ||||
| 	} | ||||
| } | ||||
| 
 | ||||
| function translateLevel(level) { | ||||
| 	if (level === 0) { | ||||
| 		return false; | ||||
| 	} | ||||
| 
 | ||||
| 	return { | ||||
| 		level, | ||||
| 		hasBasic: true, | ||||
| 		has256: level >= 2, | ||||
| 		has16m: level >= 3 | ||||
| 	}; | ||||
| } | ||||
| 
 | ||||
| function supportsColor(haveStream, {streamIsTTY, sniffFlags = true} = {}) { | ||||
| 	const noFlagForceColor = envForceColor(); | ||||
| 	if (noFlagForceColor !== undefined) { | ||||
| 		flagForceColor = noFlagForceColor; | ||||
| 	} | ||||
| 
 | ||||
| 	const forceColor = sniffFlags ? flagForceColor : noFlagForceColor; | ||||
| 
 | ||||
| 	if (forceColor === 0) { | ||||
| 		return 0; | ||||
| 	} | ||||
| 
 | ||||
| 	if (sniffFlags) { | ||||
| 		if (hasFlag('color=16m') || | ||||
| 			hasFlag('color=full') || | ||||
| 			hasFlag('color=truecolor')) { | ||||
| 			return 3; | ||||
| 		} | ||||
| 
 | ||||
| 		if (hasFlag('color=256')) { | ||||
| 			return 2; | ||||
| 		} | ||||
| 	} | ||||
| 
 | ||||
| 	if (haveStream && !streamIsTTY && forceColor === undefined) { | ||||
| 		return 0; | ||||
| 	} | ||||
| 
 | ||||
| 	const min = forceColor || 0; | ||||
| 
 | ||||
| 	if (env.TERM === 'dumb') { | ||||
| 		return min; | ||||
| 	} | ||||
| 
 | ||||
| 	if (process.platform === 'win32') { | ||||
| 		// Windows 10 build 10586 is the first Windows release that supports 256 colors.
 | ||||
| 		// Windows 10 build 14931 is the first release that supports 16m/TrueColor.
 | ||||
| 		const osRelease = os.release().split('.'); | ||||
| 		if ( | ||||
| 			Number(osRelease[0]) >= 10 && | ||||
| 			Number(osRelease[2]) >= 10586 | ||||
| 		) { | ||||
| 			return Number(osRelease[2]) >= 14931 ? 3 : 2; | ||||
| 		} | ||||
| 
 | ||||
| 		return 1; | ||||
| 	} | ||||
| 
 | ||||
| 	if ('CI' in env) { | ||||
| 		if (['TRAVIS', 'CIRCLECI', 'APPVEYOR', 'GITLAB_CI', 'GITHUB_ACTIONS', 'BUILDKITE', 'DRONE'].some(sign => sign in env) || env.CI_NAME === 'codeship') { | ||||
| 			return 1; | ||||
| 		} | ||||
| 
 | ||||
| 		return min; | ||||
| 	} | ||||
| 
 | ||||
| 	if ('TEAMCITY_VERSION' in env) { | ||||
| 		return /^(9\.(0*[1-9]\d*)\.|\d{2,}\.)/.test(env.TEAMCITY_VERSION) ? 1 : 0; | ||||
| 	} | ||||
| 
 | ||||
| 	if (env.COLORTERM === 'truecolor') { | ||||
| 		return 3; | ||||
| 	} | ||||
| 
 | ||||
| 	if ('TERM_PROGRAM' in env) { | ||||
| 		const version = Number.parseInt((env.TERM_PROGRAM_VERSION || '').split('.')[0], 10); | ||||
| 
 | ||||
| 		switch (env.TERM_PROGRAM) { | ||||
| 			case 'iTerm.app': | ||||
| 				return version >= 3 ? 3 : 2; | ||||
| 			case 'Apple_Terminal': | ||||
| 				return 2; | ||||
| 			// No default
 | ||||
| 		} | ||||
| 	} | ||||
| 
 | ||||
| 	if (/-256(color)?$/i.test(env.TERM)) { | ||||
| 		return 2; | ||||
| 	} | ||||
| 
 | ||||
| 	if (/^screen|^xterm|^vt100|^vt220|^rxvt|color|ansi|cygwin|linux/i.test(env.TERM)) { | ||||
| 		return 1; | ||||
| 	} | ||||
| 
 | ||||
| 	if ('COLORTERM' in env) { | ||||
| 		return 1; | ||||
| 	} | ||||
| 
 | ||||
| 	return min; | ||||
| } | ||||
| 
 | ||||
| function getSupportLevel(stream, options = {}) { | ||||
| 	const level = supportsColor(stream, { | ||||
| 		streamIsTTY: stream && stream.isTTY, | ||||
| 		...options | ||||
| 	}); | ||||
| 
 | ||||
| 	return translateLevel(level); | ||||
| } | ||||
| 
 | ||||
| module.exports = { | ||||
| 	supportsColor: getSupportLevel, | ||||
| 	stdout: getSupportLevel({isTTY: tty.isatty(1)}), | ||||
| 	stderr: getSupportLevel({isTTY: tty.isatty(2)}) | ||||
| }; | ||||
| 
 | ||||
| 
 | ||||
| /***/ }), | ||||
| 
 | ||||
| /***/ 95523: | ||||
| /***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { | ||||
| 
 | ||||
| @ -29933,7 +30109,7 @@ exports.colors = [6, 2, 3, 4, 5, 1]; | ||||
| try { | ||||
| 	// Optional dependency (as in, doesn't need to be installed, NOT like optionalDependencies in package.json)
 | ||||
| 	// eslint-disable-next-line import/no-extraneous-dependencies
 | ||||
| 	const supportsColor = __nccwpck_require__(30132); | ||||
| 	const supportsColor = __nccwpck_require__(32957); | ||||
| 
 | ||||
| 	if (supportsColor && (supportsColor.stderr || supportsColor).level >= 2) { | ||||
| 		exports.colors = [ | ||||
| @ -107432,14 +107608,6 @@ function run() { | ||||
| } | ||||
| 
 | ||||
| 
 | ||||
| /***/ }), | ||||
| 
 | ||||
| /***/ 30132: | ||||
| /***/ ((module) => { | ||||
| 
 | ||||
| module.exports = eval("require")("supports-color"); | ||||
| 
 | ||||
| 
 | ||||
| /***/ }), | ||||
| 
 | ||||
| /***/ 39491: | ||||
| @ -160449,7 +160617,7 @@ module.exports = index; | ||||
| /***/ ((module) => { | ||||
| 
 | ||||
| "use strict"; | ||||
| module.exports = JSON.parse('{"name":"@actions/artifact","version":"3.0.0","preview":true,"description":"Actions artifact lib","keywords":["github","actions","artifact"],"homepage":"https://github.com/actions/toolkit/tree/main/packages/artifact","license":"MIT","main":"lib/artifact.js","types":"lib/artifact.d.ts","directories":{"lib":"lib","test":"__tests__"},"files":["lib","!.DS_Store"],"publishConfig":{"access":"public"},"repository":{"type":"git","url":"git+https://github.com/actions/toolkit.git","directory":"packages/artifact"},"scripts":{"audit-moderate":"npm install && npm audit --json --audit-level=moderate > audit.json","test":"cd ../../ && npm run test ./packages/artifact","bootstrap":"cd ../../ && npm run bootstrap","tsc-run":"tsc","tsc":"npm run bootstrap && npm run tsc-run","gen:docs":"typedoc --plugin typedoc-plugin-markdown --out docs/generated src/artifact.ts --githubPages false --readme none"},"bugs":{"url":"https://github.com/actions/toolkit/issues"},"dependencies":{"@actions/core":"^1.10.0","@actions/github":"^6.0.1","@actions/http-client":"^2.1.0","@azure/core-http":"^3.0.5","@azure/storage-blob":"^12.15.0","@octokit/core":"^5.2.1","@octokit/plugin-request-log":"^1.0.4","@octokit/plugin-retry":"^3.0.9","@octokit/request":"^8.4.1","@octokit/request-error":"^5.1.1","@protobuf-ts/plugin":"^2.2.3-alpha.1","archiver":"^7.0.1","jwt-decode":"^3.1.2","unzip-stream":"^0.3.1"},"devDependencies":{"@types/archiver":"^5.3.2","@types/unzip-stream":"^0.3.4","typedoc":"^0.28.13","typedoc-plugin-markdown":"^3.17.1","typescript":"^5.2.2"},"overrides":{"uri-js":"npm:uri-js-replace@^1.0.1"}}'); | ||||
| module.exports = JSON.parse('{"name":"@actions/artifact","version":"3.0.0","preview":true,"description":"Actions artifact lib","keywords":["github","actions","artifact"],"homepage":"https://github.com/actions/toolkit/tree/main/packages/artifact","license":"MIT","main":"lib/artifact.js","types":"lib/artifact.d.ts","directories":{"lib":"lib","test":"__tests__"},"files":["lib","!.DS_Store"],"publishConfig":{"access":"public"},"repository":{"type":"git","url":"git+https://github.com/actions/toolkit.git","directory":"packages/artifact"},"scripts":{"audit-moderate":"npm install && npm audit --json --audit-level=moderate > audit.json","test":"cd ../../ && npm run test ./packages/artifact","bootstrap":"cd ../../ && npm run bootstrap","tsc-run":"tsc","tsc":"npm run bootstrap && npm run tsc-run","gen:docs":"typedoc --plugin typedoc-plugin-markdown --out docs/generated src/artifact.ts --githubPages false --readme none"},"bugs":{"url":"https://github.com/actions/toolkit/issues"},"dependencies":{"@actions/core":"^1.10.0","@actions/github":"^6.0.1","@actions/http-client":"^2.1.0","@azure/core-http":"^3.0.5","@azure/storage-blob":"^12.15.0","@octokit/core":"^5.2.1","@octokit/plugin-request-log":"^1.0.4","@octokit/plugin-retry":"^3.0.9","@octokit/request":"^8.4.1","@octokit/request-error":"^5.1.1","@protobuf-ts/plugin":"^2.2.3-alpha.1","archiver":"^7.0.1","jwt-decode":"^3.1.2","unzip-stream":"^0.3.1"},"devDependencies":{"@types/archiver":"^5.3.2","@types/unzip-stream":"^0.3.4","typedoc":"^0.28.13","typedoc-plugin-markdown":"^3.17.1","typescript":"^5.2.2"},"overrides":{"uri-js":"npm:uri-js-replace@^1.0.1","node-fetch":"^3.3.2"}}'); | ||||
| 
 | ||||
| /***/ }) | ||||
| 
 | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user