AiScript関連
This commit is contained in:
		
							parent
							
								
									c62aff76af
								
							
						
					
					
						commit
						f07047d1e8
					
				
					 12 changed files with 58 additions and 133 deletions
				
			
		|  | @ -42,7 +42,7 @@ | |||
| 		"@koa/cors": "3.0.0", | ||||
| 		"@koa/multer": "2.0.2", | ||||
| 		"@koa/router": "8.0.8", | ||||
| 		"@syuilo/aiscript": "0.0.2", | ||||
| 		"@syuilo/aiscript": "0.1.2", | ||||
| 		"@types/bcryptjs": "2.4.2", | ||||
| 		"@types/bull": "3.12.1", | ||||
| 		"@types/cbor": "5.0.0", | ||||
|  |  | |||
|  | @ -10,7 +10,7 @@ import i18n from '../../i18n'; | |||
| import { faHeart as faHeartS } from '@fortawesome/free-solid-svg-icons'; | ||||
| import { faHeart } from '@fortawesome/free-regular-svg-icons'; | ||||
| import XBlock from './page.block.vue'; | ||||
| import { ASEvaluator } from '../../scripts/aiscript/evaluator'; | ||||
| import { ASEvaluator } from '../../scripts/aoiscript/evaluator'; | ||||
| import { collectPageVars } from '../../scripts/collect-page-vars'; | ||||
| import { url } from '../../config'; | ||||
| 
 | ||||
|  |  | |||
|  | @ -59,7 +59,7 @@ import { v4 as uuid } from 'uuid'; | |||
| import i18n from '../../i18n'; | ||||
| import XContainer from './page-editor.container.vue'; | ||||
| import MkTextarea from '../../components/ui/textarea.vue'; | ||||
| import { isLiteralBlock, funcDefs, blockDefs } from '../../scripts/aiscript/index'; | ||||
| import { isLiteralBlock, funcDefs, blockDefs } from '../../scripts/aoiscript/index'; | ||||
| 
 | ||||
| export default Vue.extend({ | ||||
| 	i18n, | ||||
|  |  | |||
|  | @ -98,8 +98,8 @@ import MkButton from '../../components/ui/button.vue'; | |||
| import MkSelect from '../../components/ui/select.vue'; | ||||
| import MkSwitch from '../../components/ui/switch.vue'; | ||||
| import MkInput from '../../components/ui/input.vue'; | ||||
| import { blockDefs } from '../../scripts/aiscript/index'; | ||||
| import { ASTypeChecker } from '../../scripts/aiscript/type-checker'; | ||||
| import { blockDefs } from '../../scripts/aoiscript/index'; | ||||
| import { ASTypeChecker } from '../../scripts/aoiscript/type-checker'; | ||||
| import { url } from '../../config'; | ||||
| import { collectPageVars } from '../../scripts/collect-page-vars'; | ||||
| import { selectDriveFile } from '../../scripts/select-drive-file'; | ||||
|  |  | |||
|  | @ -31,6 +31,7 @@ import { AiScript, parse, utils, values } from '@syuilo/aiscript'; | |||
| import i18n from '../i18n'; | ||||
| import MkContainer from '../components/ui/container.vue'; | ||||
| import MkButton from '../components/ui/button.vue'; | ||||
| import { createAiScriptEnv } from '../scripts/create-aiscript-env'; | ||||
| 
 | ||||
| export default Vue.extend({ | ||||
| 	i18n, | ||||
|  | @ -71,24 +72,7 @@ export default Vue.extend({ | |||
| 	methods: { | ||||
| 		async run() { | ||||
| 			this.logs = []; | ||||
| 			const aiscript = new AiScript({ | ||||
| 				dialog: values.FN_NATIVE(async ([title, text, type]) => { | ||||
| 					await this.$root.dialog({ | ||||
| 						type: type ? type.value : 'info', | ||||
| 						title: title.value, | ||||
| 						text: text.value, | ||||
| 					}); | ||||
| 				}), | ||||
| 				confirm: values.FN_NATIVE(async ([title, text]) => { | ||||
| 					const confirm = await this.$root.dialog({ | ||||
| 						type: 'warning', | ||||
| 						showCancelButton: true, | ||||
| 						title: title.value, | ||||
| 						text: text.value, | ||||
| 					}); | ||||
| 					return confirm.canceled ? values.FALSE : values.TRUE | ||||
| 				}), | ||||
| 			}, { | ||||
| 			const aiscript = new AiScript(createAiScriptEnv(this), { | ||||
| 				in: (q) => { | ||||
| 					return new Promise(ok => { | ||||
| 						this.$root.dialog({ | ||||
|  |  | |||
|  | @ -9,7 +9,7 @@ type Fn = { | |||
| }; | ||||
| 
 | ||||
| /** | ||||
|  * AiScript evaluator | ||||
|  * AoiScript evaluator | ||||
|  */ | ||||
| export class ASEvaluator { | ||||
| 	private variables: Variable[]; | ||||
|  | @ -51,7 +51,7 @@ export class ASEvaluator { | |||
| 		if (pageVar !== undefined) { | ||||
| 			pageVar.value = value; | ||||
| 		} else { | ||||
| 			throw new AiScriptError(`No such page var '${name}'`); | ||||
| 			throw new AoiScriptError(`No such page var '${name}'`); | ||||
| 		} | ||||
| 	} | ||||
| 
 | ||||
|  | @ -206,14 +206,14 @@ export class ASEvaluator { | |||
| 		const fnName = block.type; | ||||
| 		const fn = (funcs as any)[fnName]; | ||||
| 		if (fn == null) { | ||||
| 			throw new AiScriptError(`No such function '${fnName}'`); | ||||
| 			throw new AoiScriptError(`No such function '${fnName}'`); | ||||
| 		} else { | ||||
| 			return fn(...block.args.map(x => this.evaluate(x, scope))); | ||||
| 		} | ||||
| 	} | ||||
| } | ||||
| 
 | ||||
| class AiScriptError extends Error { | ||||
| class AoiScriptError extends Error { | ||||
| 	public info?: any; | ||||
| 
 | ||||
| 	constructor(message: string, info?: any) { | ||||
|  | @ -223,7 +223,7 @@ class AiScriptError extends Error { | |||
| 
 | ||||
| 		// Maintains proper stack trace for where our error was thrown (only available on V8)
 | ||||
| 		if (Error.captureStackTrace) { | ||||
| 			Error.captureStackTrace(this, AiScriptError); | ||||
| 			Error.captureStackTrace(this, AoiScriptError); | ||||
| 		} | ||||
| 	} | ||||
| } | ||||
|  | @ -256,7 +256,7 @@ class Scope { | |||
| 			} | ||||
| 		} | ||||
| 
 | ||||
| 		throw new AiScriptError( | ||||
| 		throw new AoiScriptError( | ||||
| 			`No such variable '${name}' in scope '${this.name}'`, { | ||||
| 				scope: this.layerdStates | ||||
| 			}); | ||||
|  | @ -1,5 +1,5 @@ | |||
| /** | ||||
|  * AiScript | ||||
|  * AoiScript | ||||
|  */ | ||||
| 
 | ||||
| import { | ||||
|  | @ -8,7 +8,7 @@ type TypeError = { | |||
| }; | ||||
| 
 | ||||
| /** | ||||
|  * AiScript type checker | ||||
|  * AoiScript type checker | ||||
|  */ | ||||
| export class ASTypeChecker { | ||||
| 	public variables: Variable[]; | ||||
							
								
								
									
										28
									
								
								src/client/scripts/create-aiscript-env.ts
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										28
									
								
								src/client/scripts/create-aiscript-env.ts
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,28 @@ | |||
| import { utils, values } from '@syuilo/aiscript'; | ||||
| 
 | ||||
| export function createAiScriptEnv(vm) { | ||||
| 	return { | ||||
| 		USER_ID: values.STR(vm.$store.state.i.id), | ||||
| 		USER_USERNAME: values.STR(vm.$store.state.i.username), | ||||
| 		'Mk:dialog': values.FN_NATIVE(async ([title, text, type]) => { | ||||
| 			await vm.$root.dialog({ | ||||
| 				type: type ? type.value : 'info', | ||||
| 				title: title.value, | ||||
| 				text: text.value, | ||||
| 			}); | ||||
| 		}), | ||||
| 		'Mk:confirm': values.FN_NATIVE(async ([title, text]) => { | ||||
| 			const confirm = await vm.$root.dialog({ | ||||
| 				type: 'warning', | ||||
| 				showCancelButton: true, | ||||
| 				title: title.value, | ||||
| 				text: text.value, | ||||
| 			}); | ||||
| 			return confirm.canceled ? values.FALSE : values.TRUE | ||||
| 		}), | ||||
| 		'Mk:api': values.FN_NATIVE(async ([ep, param, token]) => { | ||||
| 			const res = await vm.$root.api(ep.value, utils.valToJs(param), token || null); | ||||
| 			return utils.jsToVal(res); | ||||
| 		}), | ||||
| 	}; | ||||
| } | ||||
|  | @ -138,7 +138,7 @@ export default () => new Vuex.Store({ | |||
| 			const promise = new Promise((resolve, reject) => { | ||||
| 				// Append a credential
 | ||||
| 				if (ctx.getters.isSignedIn) (data as any).i = ctx.state.i.token; | ||||
| 				if (token) (data as any).i = token; | ||||
| 				if (token !== undefined) (data as any).i = token; | ||||
| 
 | ||||
| 				// Send request
 | ||||
| 				fetch(endpoint.indexOf('://') > -1 ? endpoint : `${apiUrl}/${endpoint}`, { | ||||
|  |  | |||
|  | @ -7,4 +7,4 @@ | |||
| 
 | ||||
| ユーザーからの入力を受け取るには、ページに「ユーザー入力」ブロックを設置し、「変数名」に入力を格納したい変数名を設定します(変数は自動で作成されます)。その変数を使ってユーザー入力に応じた動作を行えます。 | ||||
| 
 | ||||
| 関数を使うと、値の算出処理を再利用可能な形にまとめることができます。関数を作るには、「関数」タイプの変数を作成します。関数にはスロット(引数)を設定することができ、スロットの値は関数内で変数として利用可能です。また、AiScript標準で関数を引数に取る関数(高階関数と呼ばれます)も存在します。関数は予め定義しておくほかに、このような高階関数のスロットに即席でセットすることもできます。 | ||||
| 関数を使うと、値の算出処理を再利用可能な形にまとめることができます。関数を作るには、「関数」タイプの変数を作成します。関数にはスロット(引数)を設定することができ、スロットの値は関数内で変数として利用可能です。また、関数を引数に取る関数(高階関数と呼ばれます)も存在します。関数は予め定義しておくほかに、このような高階関数のスロットに即席でセットすることもできます。 | ||||
|  |  | |||
							
								
								
									
										113
									
								
								yarn.lock
									
										
									
									
									
								
							
							
						
						
									
										113
									
								
								yarn.lock
									
										
									
									
									
								
							|  | @ -144,13 +144,14 @@ | |||
|   dependencies: | ||||
|     type-detect "4.0.8" | ||||
| 
 | ||||
| "@syuilo/aiscript@0.0.2": | ||||
|   version "0.0.2" | ||||
|   resolved "https://registry.yarnpkg.com/@syuilo/aiscript/-/aiscript-0.0.2.tgz#1aeb0999e817c525525b6425401cf499bdd7e0bc" | ||||
|   integrity sha512-0bIhG+PzJUB2ny8kOR9JypDfITgrBZhED5Kfj0KTtS3CKJAa3Klp8FWew5a6xL75fndduAf3caxHWf8X5QkWmg== | ||||
| "@syuilo/aiscript@0.1.2": | ||||
|   version "0.1.2" | ||||
|   resolved "https://registry.yarnpkg.com/@syuilo/aiscript/-/aiscript-0.1.2.tgz#65c42793c38707d862b3a64f5edc845789372ade" | ||||
|   integrity sha512-W0G/JuVkD9jARPhKFaaHp+59Iv+2LapQ2zKjM08hoB/6hEzHjis0uRbw07TXyughQb17iU452rp1gJEUkXV3Mg== | ||||
|   dependencies: | ||||
|     autobind-decorator "2.4.0" | ||||
|     chalk "4.0.0" | ||||
|     uuid "7.0.3" | ||||
| 
 | ||||
| "@tokenizer/token@^0.1.0", "@tokenizer/token@^0.1.1": | ||||
|   version "0.1.1" | ||||
|  | @ -3028,7 +3029,7 @@ debug@3.1.0, debug@~3.1.0: | |||
|   dependencies: | ||||
|     ms "2.0.0" | ||||
| 
 | ||||
| debug@3.2.6, debug@3.X, debug@^3.1.0, debug@^3.2.6: | ||||
| debug@3.2.6, debug@3.X, debug@^3.1.0: | ||||
|   version "3.2.6" | ||||
|   resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b" | ||||
|   integrity sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ== | ||||
|  | @ -3190,7 +3191,7 @@ detect-indent@^5.0.0: | |||
|   resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-5.0.0.tgz#3871cc0a6a002e8c3e5b3cf7f336264675f06b9d" | ||||
|   integrity sha1-OHHMCmoALow+Wzz38zYmRnXwa50= | ||||
| 
 | ||||
| detect-libc@^1.0.2, detect-libc@^1.0.3: | ||||
| detect-libc@^1.0.3: | ||||
|   version "1.0.3" | ||||
|   resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" | ||||
|   integrity sha1-+hN8S9aY7fVc1c0CrFWfkaTEups= | ||||
|  | @ -4154,13 +4155,6 @@ fs-constants@^1.0.0: | |||
|   resolved "https://registry.yarnpkg.com/fs-constants/-/fs-constants-1.0.0.tgz#6be0de9be998ce16af8afc24497b9ee9b7ccd9ad" | ||||
|   integrity sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow== | ||||
| 
 | ||||
| fs-minipass@^1.2.5: | ||||
|   version "1.2.7" | ||||
|   resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.7.tgz#ccff8570841e7fe4265693da88936c55aed7f7c7" | ||||
|   integrity sha512-GWSSJGFy4e9GUeCcbIkED+bgAoFyj7XF1mV8rma3QW4NIqX9Kyx79N/PF61H5udOV3aY1IaMLs6pGbH71nlCTA== | ||||
|   dependencies: | ||||
|     minipass "^2.6.0" | ||||
| 
 | ||||
| fs-minipass@^2.0.0: | ||||
|   version "2.1.0" | ||||
|   resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.1.0.tgz#7f5036fdbf12c63c169190cbe4199c852271f9fb" | ||||
|  | @ -4869,7 +4863,7 @@ humanize-number@0.0.2: | |||
|   resolved "https://registry.yarnpkg.com/humanize-number/-/humanize-number-0.0.2.tgz#11c0af6a471643633588588048f1799541489c18" | ||||
|   integrity sha1-EcCvakcWQ2M1iFiASPF5lUFInBg= | ||||
| 
 | ||||
| iconv-lite@0.4.24, iconv-lite@^0.4.24, iconv-lite@^0.4.4: | ||||
| iconv-lite@0.4.24, iconv-lite@^0.4.24: | ||||
|   version "0.4.24" | ||||
|   resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" | ||||
|   integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== | ||||
|  | @ -4893,13 +4887,6 @@ iferr@^0.1.5: | |||
|   resolved "https://registry.yarnpkg.com/iferr/-/iferr-0.1.5.tgz#c60eed69e6d8fdb6b3104a1fcbca1c192dc5b501" | ||||
|   integrity sha1-xg7taebY/bazEEofy8ocGS3FtQE= | ||||
| 
 | ||||
| ignore-walk@^3.0.1: | ||||
|   version "3.0.3" | ||||
|   resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.3.tgz#017e2447184bfeade7c238e4aefdd1e8f95b1e37" | ||||
|   integrity sha512-m7o6xuOaT1aqheYHKf8W6J5pYH85ZI9w077erOzLje3JsB1gkafkAhHHY19dqjulgIZHFm32Cp5uNZgcQqdJKw== | ||||
|   dependencies: | ||||
|     minimatch "^3.0.4" | ||||
| 
 | ||||
| ignore@^4.0.6: | ||||
|   version "4.0.6" | ||||
|   resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" | ||||
|  | @ -6420,14 +6407,6 @@ minipass-pipeline@^1.2.2: | |||
|   dependencies: | ||||
|     minipass "^3.0.0" | ||||
| 
 | ||||
| minipass@^2.6.0, minipass@^2.8.6, minipass@^2.9.0: | ||||
|   version "2.9.0" | ||||
|   resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.9.0.tgz#e713762e7d3e32fed803115cf93e04bca9fcc9a6" | ||||
|   integrity sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg== | ||||
|   dependencies: | ||||
|     safe-buffer "^5.1.2" | ||||
|     yallist "^3.0.0" | ||||
| 
 | ||||
| minipass@^3.0.0, minipass@^3.1.1: | ||||
|   version "3.1.1" | ||||
|   resolved "https://registry.yarnpkg.com/minipass/-/minipass-3.1.1.tgz#7607ce778472a185ad6d89082aa2070f79cedcd5" | ||||
|  | @ -6435,13 +6414,6 @@ minipass@^3.0.0, minipass@^3.1.1: | |||
|   dependencies: | ||||
|     yallist "^4.0.0" | ||||
| 
 | ||||
| minizlib@^1.2.1: | ||||
|   version "1.3.3" | ||||
|   resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.3.3.tgz#2290de96818a34c29551c8a8d301216bd65a861d" | ||||
|   integrity sha512-6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q== | ||||
|   dependencies: | ||||
|     minipass "^2.9.0" | ||||
| 
 | ||||
| minizlib@^2.1.0: | ||||
|   version "2.1.0" | ||||
|   resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.0.tgz#fd52c645301ef09a63a2c209697c294c6ce02cf3" | ||||
|  | @ -6493,7 +6465,7 @@ mkdirp@0.5.4: | |||
|   dependencies: | ||||
|     minimist "^1.2.5" | ||||
| 
 | ||||
| mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@^0.5.3, mkdirp@~0.5.1: | ||||
| mkdirp@^0.5.1, mkdirp@^0.5.3, mkdirp@~0.5.1: | ||||
|   version "0.5.5" | ||||
|   resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def" | ||||
|   integrity sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ== | ||||
|  | @ -6675,15 +6647,6 @@ natural-compare@^1.4.0: | |||
|   resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" | ||||
|   integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= | ||||
| 
 | ||||
| needle@^2.2.1: | ||||
|   version "2.4.1" | ||||
|   resolved "https://registry.yarnpkg.com/needle/-/needle-2.4.1.tgz#14af48732463d7475696f937626b1b993247a56a" | ||||
|   integrity sha512-x/gi6ijr4B7fwl6WYL9FwlCvRQKGlUNvnceho8wxkwXqN8jvVmmmATTmZPRRG7b/yC1eode26C2HO9jl78Du9g== | ||||
|   dependencies: | ||||
|     debug "^3.2.6" | ||||
|     iconv-lite "^0.4.4" | ||||
|     sax "^1.2.4" | ||||
| 
 | ||||
| negotiator@0.6.2: | ||||
|   version "0.6.2" | ||||
|   resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.2.tgz#feacf7ccf525a77ae9634436a64883ffeca346fb" | ||||
|  | @ -6793,22 +6756,6 @@ node-object-hash@^1.2.0: | |||
|   resolved "https://registry.yarnpkg.com/node-object-hash/-/node-object-hash-1.4.2.tgz#385833d85b229902b75826224f6077be969a9e94" | ||||
|   integrity sha512-UdS4swXs85fCGWWf6t6DMGgpN/vnlKeSGEQ7hJcrs7PBFoxoKLmibc3QRb7fwiYsjdL7PX8iI/TMSlZ90dgHhQ== | ||||
| 
 | ||||
| node-pre-gyp@*: | ||||
|   version "0.14.0" | ||||
|   resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.14.0.tgz#9a0596533b877289bcad4e143982ca3d904ddc83" | ||||
|   integrity sha512-+CvDC7ZttU/sSt9rFjix/P05iS43qHCOOGzcr3Ry99bXG7VX953+vFyEuph/tfqoYu8dttBkE86JSKBO2OzcxA== | ||||
|   dependencies: | ||||
|     detect-libc "^1.0.2" | ||||
|     mkdirp "^0.5.1" | ||||
|     needle "^2.2.1" | ||||
|     nopt "^4.0.1" | ||||
|     npm-packlist "^1.1.6" | ||||
|     npmlog "^4.0.2" | ||||
|     rc "^1.2.7" | ||||
|     rimraf "^2.6.1" | ||||
|     semver "^5.3.0" | ||||
|     tar "^4.4.2" | ||||
| 
 | ||||
| node-releases@^1.1.53: | ||||
|   version "1.1.53" | ||||
|   resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.53.tgz#2d821bfa499ed7c5dffc5e2f28c88e78a08ee3f4" | ||||
|  | @ -6829,7 +6776,7 @@ noop-logger@^0.1.1: | |||
|   resolved "https://registry.yarnpkg.com/noop-logger/-/noop-logger-0.1.1.tgz#94a2b1633c4f1317553007d8966fd0e841b6a4c2" | ||||
|   integrity sha1-lKKxYzxPExdVMAfYlm/Q6EG2pMI= | ||||
| 
 | ||||
| nopt@^4.0.1, nopt@^4.0.3: | ||||
| nopt@^4.0.3: | ||||
|   version "4.0.3" | ||||
|   resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.3.tgz#a375cad9d02fd921278d954c2254d5aa57e15e48" | ||||
|   integrity sha512-CvaGwVMztSMJLOeXPrez7fyfObdZqNUK1cPAEzLHrTybIua9pMdmmPR5YwtfNftIOMv3DPUhFaxsZMNTQO20Kg== | ||||
|  | @ -6871,27 +6818,6 @@ now-and-later@^2.0.0: | |||
|   dependencies: | ||||
|     once "^1.3.2" | ||||
| 
 | ||||
| npm-bundled@^1.0.1: | ||||
|   version "1.1.1" | ||||
|   resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.1.1.tgz#1edd570865a94cdb1bc8220775e29466c9fb234b" | ||||
|   integrity sha512-gqkfgGePhTpAEgUsGEgcq1rqPXA+tv/aVBlgEzfXwA1yiUJF7xtEt3CtVwOjNYQOVknDk0F20w58Fnm3EtG0fA== | ||||
|   dependencies: | ||||
|     npm-normalize-package-bin "^1.0.1" | ||||
| 
 | ||||
| npm-normalize-package-bin@^1.0.1: | ||||
|   version "1.0.1" | ||||
|   resolved "https://registry.yarnpkg.com/npm-normalize-package-bin/-/npm-normalize-package-bin-1.0.1.tgz#6e79a41f23fd235c0623218228da7d9c23b8f6e2" | ||||
|   integrity sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA== | ||||
| 
 | ||||
| npm-packlist@^1.1.6: | ||||
|   version "1.4.8" | ||||
|   resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.4.8.tgz#56ee6cc135b9f98ad3d51c1c95da22bbb9b2ef3e" | ||||
|   integrity sha512-5+AZgwru5IevF5ZdnFglB5wNlHG1AOOuw28WhUq8/8emhBmLv6jX5by4WJCh7lW0uSYZYS6DXqIsyZVIXRZU9A== | ||||
|   dependencies: | ||||
|     ignore-walk "^3.0.1" | ||||
|     npm-bundled "^1.0.1" | ||||
|     npm-normalize-package-bin "^1.0.1" | ||||
| 
 | ||||
| npm-run-path@^2.0.0: | ||||
|   version "2.0.2" | ||||
|   resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" | ||||
|  | @ -6906,7 +6832,7 @@ npm-run-path@^3.0.0: | |||
|   dependencies: | ||||
|     path-key "^3.0.0" | ||||
| 
 | ||||
| npmlog@^4.0.1, npmlog@^4.0.2, npmlog@^4.1.2: | ||||
| npmlog@^4.0.1, npmlog@^4.1.2: | ||||
|   version "4.1.2" | ||||
|   resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" | ||||
|   integrity sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg== | ||||
|  | @ -8793,7 +8719,7 @@ rimraf@3.0.2: | |||
|   dependencies: | ||||
|     glob "^7.1.3" | ||||
| 
 | ||||
| rimraf@^2.5.4, rimraf@^2.6.1, rimraf@^2.6.2, rimraf@^2.6.3, rimraf@^2.7.1: | ||||
| rimraf@^2.5.4, rimraf@^2.6.2, rimraf@^2.6.3, rimraf@^2.7.1: | ||||
|   version "2.7.1" | ||||
|   resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" | ||||
|   integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w== | ||||
|  | @ -9761,19 +9687,6 @@ tar-stream@^2.0.0: | |||
|     inherits "^2.0.3" | ||||
|     readable-stream "^3.1.1" | ||||
| 
 | ||||
| tar@^4.4.2: | ||||
|   version "4.4.13" | ||||
|   resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.13.tgz#43b364bc52888d555298637b10d60790254ab525" | ||||
|   integrity sha512-w2VwSrBoHa5BsSyH+KxEqeQBAllHhccyMFVHtGtdMpF4W7IRWfZjFiQceJPChOeTsSDVUpER2T8FA93pr0L+QA== | ||||
|   dependencies: | ||||
|     chownr "^1.1.1" | ||||
|     fs-minipass "^1.2.5" | ||||
|     minipass "^2.8.6" | ||||
|     minizlib "^1.2.1" | ||||
|     mkdirp "^0.5.0" | ||||
|     safe-buffer "^5.1.2" | ||||
|     yallist "^3.0.3" | ||||
| 
 | ||||
| tar@^6.0.1: | ||||
|   version "6.0.1" | ||||
|   resolved "https://registry.yarnpkg.com/tar/-/tar-6.0.1.tgz#7b3bd6c313cb6e0153770108f8d70ac298607efa" | ||||
|  | @ -11068,7 +10981,7 @@ yallist@^2.1.2: | |||
|   resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" | ||||
|   integrity sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI= | ||||
| 
 | ||||
| yallist@^3.0.0, yallist@^3.0.2, yallist@^3.0.3: | ||||
| yallist@^3.0.2: | ||||
|   version "3.1.1" | ||||
|   resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" | ||||
|   integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue