@voidzero-dev/vitepress-theme 0.0.16 → 0.0.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/_virtual/_/plugin-vue/export-helper.js +11 -0
- package/dist/assets/cta-background-CgYtVhnO.jpg +1 -0
- package/dist/assets/cta-background.jpg +1 -0
- package/dist/{style.css → index.css} +7 -7
- package/dist/index.d.ts +2 -0
- package/dist/index.js +3 -6544
- package/dist/vitepress/assets/cta-background.js +5 -0
- package/dist/vitepress/components/Eyebrow.js +18 -0
- package/dist/vitepress/components/Footer.js +72 -0
- package/dist/vitepress/components/Header.js +34 -0
- package/dist/vitepress/components/RiveAnimation.js +117 -0
- package/dist/vitepress/components/Terminal.js +161 -0
- package/dist/vitepress/components/icons/VZIconBluesky.js +21 -0
- package/dist/vitepress/components/icons/VZIconGitHub.js +21 -0
- package/dist/vitepress/components/icons/VZIconLogo.js +24 -0
- package/dist/vitepress/components/icons/VZIconTwitter.js +21 -0
- package/dist/vitepress/components/terminal-animations/TerminalAnimation1.js +37 -0
- package/dist/vitepress/components/terminal-animations/TerminalAnimation2.js +44 -0
- package/dist/vitepress/components/terminal-animations/TerminalAnimation3.js +37 -0
- package/dist/vitepress/components/terminal-animations/TerminalAnimation4.js +37 -0
- package/dist/vitepress/components/terminal-animations/TerminalAnimation5.js +37 -0
- package/dist/vitepress/components/terminal-animations/TerminalAnimation6.js +37 -0
- package/dist/vitepress/index.d.ts +34 -0
- package/dist/vitepress/index.js +21 -0
- package/package.json +13 -16
- package/dist/assets/terminal-background.jpg +0 -0
- package/dist/components/Eyebrow.vue +0 -11
- package/dist/components/Footer.vue +0 -44
- package/dist/components/Header.vue +0 -38
- package/dist/components/RiveAnimation.vue +0 -144
- package/dist/components/Terminal.vue +0 -165
- package/dist/components/terminal-animations/TerminalAnimation1.vue +0 -54
- package/dist/components/terminal-animations/TerminalAnimation2.vue +0 -59
- package/dist/components/terminal-animations/TerminalAnimation3.vue +0 -46
- package/dist/components/terminal-animations/TerminalAnimation4.vue +0 -50
- package/dist/components/terminal-animations/TerminalAnimation5.vue +0 -51
- package/dist/components/terminal-animations/TerminalAnimation6.vue +0 -55
- package/dist/composables/useTypewriter.ts +0 -43
- package/dist/index.js.map +0 -1
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
<script setup lang="ts">
|
|
2
|
-
import {useTypewriter} from '../../composables/useTypewriter'
|
|
3
|
-
import {onMounted, onUnmounted} from "vue";
|
|
4
|
-
|
|
5
|
-
const props = defineProps<{
|
|
6
|
-
onAnimationComplete?: () => void
|
|
7
|
-
}>()
|
|
8
|
-
|
|
9
|
-
let typewriter;
|
|
10
|
-
|
|
11
|
-
onMounted(async () => {
|
|
12
|
-
const Typewriter = await useTypewriter()
|
|
13
|
-
const target = document.getElementById('terminal-code');
|
|
14
|
-
typewriter = new Typewriter(target, {
|
|
15
|
-
loop: false,
|
|
16
|
-
delay: 1,
|
|
17
|
-
})
|
|
18
|
-
typewriter
|
|
19
|
-
.typeString(`<span>$ vite new vite-plus-demo --template react-ts</span>`)
|
|
20
|
-
.pauseFor(500)
|
|
21
|
-
.pasteString(`<span class="block w-full h-[1rem]"></span>`)
|
|
22
|
-
.pasteString(`<span class="text-aqua">◇ Scaffolding project in ~/vite-plus-demo</span>`)
|
|
23
|
-
.pauseFor(500)
|
|
24
|
-
.pasteString(`<span class="text-grey block">|</span>`)
|
|
25
|
-
.pasteString(`<span class="text-zest block">└ Done.</span>`)
|
|
26
|
-
.pasteString(`<span class="block w-full h-[1rem]"></span>`)
|
|
27
|
-
.pauseFor(500)
|
|
28
|
-
.pasteString(`<span class="block"><span class="text-zest">✓</span> Installing dependencies using default package manager: <span class="text-vite">pnpm@v10.16.1</span></span>`)
|
|
29
|
-
.pasteString(`<span class="block w-full h-[1rem]"></span>`)
|
|
30
|
-
.pasteString(`<div class="block"><span class="text-grey">Progress:</span> resolved 1, reused 0, downloaded 0, added 0</div>`)
|
|
31
|
-
.pasteString(`<div class="block"><span class="text-grey">Packages:</span> <span class="text-vite">+31</span></div>`)
|
|
32
|
-
.typeString(`<span class="text-grey block">++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++</span>`)
|
|
33
|
-
.pasteString(`<div class="block"><span class="text-grey">Progress:</span> resolved 31, reused 31, downloaded 0, added 31, <span class="text-zest">done</span></div>`)
|
|
34
|
-
.pasteString(`<span class="block w-full h-[1rem]"></span>`)
|
|
35
|
-
.callFunction(() => {
|
|
36
|
-
if (props.onAnimationComplete) {
|
|
37
|
-
props.onAnimationComplete()
|
|
38
|
-
}
|
|
39
|
-
})
|
|
40
|
-
.start();
|
|
41
|
-
})
|
|
42
|
-
|
|
43
|
-
onUnmounted(() => {
|
|
44
|
-
if(typewriter){
|
|
45
|
-
typewriter.stop()
|
|
46
|
-
}
|
|
47
|
-
})
|
|
48
|
-
</script>
|
|
49
|
-
|
|
50
|
-
<template>
|
|
51
|
-
<p class="font-mono text-sm text-white leading-[1.5rem]">
|
|
52
|
-
<span id="terminal-code"></span>
|
|
53
|
-
</p>
|
|
54
|
-
</template>
|
|
@@ -1,59 +0,0 @@
|
|
|
1
|
-
<script setup lang="ts">
|
|
2
|
-
import {useTypewriter} from '../../composables/useTypewriter'
|
|
3
|
-
import {onMounted, onUnmounted} from "vue";
|
|
4
|
-
|
|
5
|
-
const props = defineProps<{
|
|
6
|
-
onAnimationComplete?: () => void
|
|
7
|
-
}>()
|
|
8
|
-
|
|
9
|
-
let typewriter;
|
|
10
|
-
|
|
11
|
-
onMounted(async () => {
|
|
12
|
-
const Typewriter = await useTypewriter()
|
|
13
|
-
// Get current time for easter egg
|
|
14
|
-
const now = new Date()
|
|
15
|
-
let hours = now.getHours()
|
|
16
|
-
const minutes = now.getMinutes().toString().padStart(2, '0')
|
|
17
|
-
const seconds = now.getSeconds().toString().padStart(2, '0')
|
|
18
|
-
const ampm = hours >= 12 ? 'pm' : 'am'
|
|
19
|
-
hours = hours % 12 || 12
|
|
20
|
-
const currentTime = `${hours}:${minutes}:${seconds} ${ampm}`
|
|
21
|
-
|
|
22
|
-
const target = document.getElementById('terminal-code');
|
|
23
|
-
typewriter = new Typewriter(target, {
|
|
24
|
-
loop: false,
|
|
25
|
-
delay: 1,
|
|
26
|
-
})
|
|
27
|
-
typewriter
|
|
28
|
-
.typeString(`<span>$ vite dev</span>`)
|
|
29
|
-
.pauseFor(200)
|
|
30
|
-
.pasteString(`<span class="block w-full h-[1rem]"></span>`)
|
|
31
|
-
.pasteString(`<div class="block text-grey"><span class="text-vite">VITE+ v1.0.0</span> ready in <span class="text-white font-medium">65</span> ms</div>`)
|
|
32
|
-
.pasteString(`<span class="block w-full h-[1rem]"></span>`)
|
|
33
|
-
.pauseFor(500)
|
|
34
|
-
.pasteString(`<div class="block"><span class="text-vite"> → Local: </span><span class="text-aqua">http://localhost:5173/</span></div>`)
|
|
35
|
-
.pasteString(`<div class="block text-grey">→ Network: use <span class="text-white font-medium">--host</span> to expose</div>`)
|
|
36
|
-
.pasteString(`<span class="block w-full h-[1rem]"></span>`)
|
|
37
|
-
.pauseFor(1500)
|
|
38
|
-
.pasteString(`<div class="block text-grey">${currentTime} <span class="text-aqua">[vite]</span> (client) <span class="text-vite">hmr update</span> /src/App.tsx</div>`)
|
|
39
|
-
.pasteString(`<span class="block w-full h-[1rem]"></span>`)
|
|
40
|
-
.callFunction(() => {
|
|
41
|
-
if (props.onAnimationComplete) {
|
|
42
|
-
props.onAnimationComplete()
|
|
43
|
-
}
|
|
44
|
-
})
|
|
45
|
-
.start();
|
|
46
|
-
})
|
|
47
|
-
|
|
48
|
-
onUnmounted(() => {
|
|
49
|
-
if(typewriter){
|
|
50
|
-
typewriter.stop()
|
|
51
|
-
}
|
|
52
|
-
})
|
|
53
|
-
</script>
|
|
54
|
-
|
|
55
|
-
<template>
|
|
56
|
-
<p class="font-mono text-sm text-white leading-[1.5rem]">
|
|
57
|
-
<span id="terminal-code"></span>
|
|
58
|
-
</p>
|
|
59
|
-
</template>
|
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
<script setup lang="ts">
|
|
2
|
-
import {useTypewriter} from '../../composables/useTypewriter'
|
|
3
|
-
import {onMounted, onUnmounted} from "vue";
|
|
4
|
-
|
|
5
|
-
const props = defineProps<{
|
|
6
|
-
onAnimationComplete?: () => void
|
|
7
|
-
}>()
|
|
8
|
-
|
|
9
|
-
let typewriter;
|
|
10
|
-
|
|
11
|
-
onMounted(async () => {
|
|
12
|
-
const Typewriter = await useTypewriter()
|
|
13
|
-
const target = document.getElementById('terminal-code');
|
|
14
|
-
typewriter = new Typewriter(target, {
|
|
15
|
-
loop: false,
|
|
16
|
-
delay: 1,
|
|
17
|
-
})
|
|
18
|
-
typewriter
|
|
19
|
-
.typeString(`<span>$ vite lint</span>`)
|
|
20
|
-
.pauseFor(200)
|
|
21
|
-
.pasteString(`<span class="block w-full h-[1rem]"></span>`)
|
|
22
|
-
.pasteString(`<div class="block text-grey"><span class="text-vite">VITE+ v1.0.0</span> <span class="text-aqua">lint</span></div>`)
|
|
23
|
-
.pauseFor(500)
|
|
24
|
-
.pasteString(`<div class="block text-grey">Found <span class="text-white">0 warnings</span> and <span class="text-white">0 errors</span>.</div>`)
|
|
25
|
-
.pasteString(`<div class="block text-grey"><span class="text-zest">✓</span> Finished in <span class="text-white">1ms</span> on <span class="text-white">3 files</span> with <span class="text-white">88 rules</span> using <span class="text-white">10 threads</span>.</div>`)
|
|
26
|
-
.pasteString(`<span class="block w-full h-[1rem]"></span>`)
|
|
27
|
-
.callFunction(() => {
|
|
28
|
-
if (props.onAnimationComplete) {
|
|
29
|
-
props.onAnimationComplete()
|
|
30
|
-
}
|
|
31
|
-
})
|
|
32
|
-
.start();
|
|
33
|
-
})
|
|
34
|
-
|
|
35
|
-
onUnmounted(() => {
|
|
36
|
-
if(typewriter){
|
|
37
|
-
typewriter.stop()
|
|
38
|
-
}
|
|
39
|
-
})
|
|
40
|
-
</script>
|
|
41
|
-
|
|
42
|
-
<template>
|
|
43
|
-
<p class="font-mono text-sm text-white leading-[1.5rem]">
|
|
44
|
-
<span id="terminal-code"></span>
|
|
45
|
-
</p>
|
|
46
|
-
</template>
|
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
<script setup lang="ts">
|
|
2
|
-
import {useTypewriter} from '../../composables/useTypewriter'
|
|
3
|
-
import {onMounted, onUnmounted} from "vue";
|
|
4
|
-
|
|
5
|
-
const props = defineProps<{
|
|
6
|
-
onAnimationComplete?: () => void
|
|
7
|
-
}>()
|
|
8
|
-
|
|
9
|
-
let typewriter;
|
|
10
|
-
|
|
11
|
-
onMounted(async () => {
|
|
12
|
-
const Typewriter = await useTypewriter()
|
|
13
|
-
const target = document.getElementById('terminal-code');
|
|
14
|
-
typewriter = new Typewriter(target, {
|
|
15
|
-
loop: false,
|
|
16
|
-
delay: 1,
|
|
17
|
-
})
|
|
18
|
-
typewriter
|
|
19
|
-
.typeString(`<span>$ vite fmt</span>`)
|
|
20
|
-
.pauseFor(200)
|
|
21
|
-
.pasteString(`<span class="block w-full h-[1rem]"></span>`)
|
|
22
|
-
.pasteString(`<div class="block text-grey"><span class="text-vite">VITE+ v1.0.0</span> <span class="text-aqua">fmt</span></div>`)
|
|
23
|
-
.pauseFor(500)
|
|
24
|
-
.pasteString(`<div class="block">src/App.css <span class="text-aqua">0ms</span> <span class="text-grey">(unchanged)</span></div>`)
|
|
25
|
-
.pasteString(`<div class="block">src/App.tsx <span class="text-aqua">1ms</span></div>`)
|
|
26
|
-
.pasteString(`<div class="block">src/index.css <span class="text-aqua">0ms</span> <span class="text-grey">(unchanged)</span></div>`)
|
|
27
|
-
.pasteString(`<div class="block">src/main.tsx <span class="text-aqua">1ms</span></div>`)
|
|
28
|
-
.pasteString(`<div class="block">src/vite-env.d.ts <span class="text-aqua">0ms</span> <span class="text-grey">(unchanged)</span></div>`)
|
|
29
|
-
.pasteString(`<div class="block"><span class="text-zest">✓</span> Formatted <span class="text-aqua">2 files</span> in <span class="text-aqua">2ms</span>.</div>`)
|
|
30
|
-
.pasteString(`<span class="block w-full h-[1rem]"></span>`)
|
|
31
|
-
.callFunction(() => {
|
|
32
|
-
if (props.onAnimationComplete) {
|
|
33
|
-
props.onAnimationComplete()
|
|
34
|
-
}
|
|
35
|
-
})
|
|
36
|
-
.start();
|
|
37
|
-
})
|
|
38
|
-
|
|
39
|
-
onUnmounted(() => {
|
|
40
|
-
if(typewriter){
|
|
41
|
-
typewriter.stop()
|
|
42
|
-
}
|
|
43
|
-
})
|
|
44
|
-
</script>
|
|
45
|
-
|
|
46
|
-
<template>
|
|
47
|
-
<p class="font-mono text-sm text-white leading-[1.5rem]">
|
|
48
|
-
<span id="terminal-code"></span>
|
|
49
|
-
</p>
|
|
50
|
-
</template>
|
|
@@ -1,51 +0,0 @@
|
|
|
1
|
-
<script setup lang="ts">
|
|
2
|
-
import {useTypewriter} from '../../composables/useTypewriter'
|
|
3
|
-
import {onMounted, onUnmounted} from "vue";
|
|
4
|
-
|
|
5
|
-
const props = defineProps<{
|
|
6
|
-
onAnimationComplete?: () => void
|
|
7
|
-
}>()
|
|
8
|
-
|
|
9
|
-
let typewriter;
|
|
10
|
-
|
|
11
|
-
onMounted(async () => {
|
|
12
|
-
const Typewriter = await useTypewriter()
|
|
13
|
-
const target = document.getElementById('terminal-code');
|
|
14
|
-
typewriter = new Typewriter(target, {
|
|
15
|
-
loop: false,
|
|
16
|
-
delay: 1,
|
|
17
|
-
})
|
|
18
|
-
typewriter
|
|
19
|
-
.typeString(`<span>$ vite test</span>`)
|
|
20
|
-
.pauseFor(200)
|
|
21
|
-
.pasteString(`<span class="block w-full h-[1rem]"></span>`)
|
|
22
|
-
.pasteString(`<div class="block"><span class="text-vite">VITE+ v1.0.0</span> <span class="text-aqua">test</span> RUN ~/vite-plus-demo</div>`)
|
|
23
|
-
.pasteString(`<span class="block w-full h-[1rem]"></span>`)
|
|
24
|
-
.pauseFor(300)
|
|
25
|
-
.pasteString(`<div class="block"><span class="text-zest">✓</span> test/hello.spec.ts <span class="text-grey">(1 test)</span> <span class="text-zest">1ms</span></div>`)
|
|
26
|
-
.pasteString(`<span class="block w-full h-[1rem]"></span>`)
|
|
27
|
-
.pasteString(`<div class="block text-grey">Test Files <span class="text-zest">1 passed</span> <span class="text-grey">(1)</span></div>`)
|
|
28
|
-
.pasteString(`<div class="block text-grey">Tests <span class="text-zest">1 passed</span> <span class="text-grey">(1)</span></div>`)
|
|
29
|
-
.pasteString(`<div class="block text-grey">Start at <span class="text-white">00:13:44</span></div>`)
|
|
30
|
-
.pasteString(`<div class="block text-grey">Duration <span class="text-white">199ms</span> <span class="text-grey">(transform 13ms, setup 0ms, collect 8ms, tests 1ms, environment 0ms, prepare 33ms)</span></div>`)
|
|
31
|
-
.pasteString(`<span class="block w-full h-[1rem]"></span>`)
|
|
32
|
-
.callFunction(() => {
|
|
33
|
-
if (props.onAnimationComplete) {
|
|
34
|
-
props.onAnimationComplete()
|
|
35
|
-
}
|
|
36
|
-
})
|
|
37
|
-
.start();
|
|
38
|
-
})
|
|
39
|
-
|
|
40
|
-
onUnmounted(() => {
|
|
41
|
-
if(typewriter){
|
|
42
|
-
typewriter.stop()
|
|
43
|
-
}
|
|
44
|
-
})
|
|
45
|
-
</script>
|
|
46
|
-
|
|
47
|
-
<template>
|
|
48
|
-
<p class="font-mono text-sm text-white leading-[1.5rem]">
|
|
49
|
-
<span id="terminal-code"></span>
|
|
50
|
-
</p>
|
|
51
|
-
</template>
|
|
@@ -1,55 +0,0 @@
|
|
|
1
|
-
<script setup lang="ts">
|
|
2
|
-
import {useTypewriter} from '../../composables/useTypewriter'
|
|
3
|
-
import {onMounted, onUnmounted} from "vue";
|
|
4
|
-
|
|
5
|
-
const props = defineProps<{
|
|
6
|
-
onAnimationComplete?: () => void
|
|
7
|
-
}>()
|
|
8
|
-
|
|
9
|
-
let typewriter;
|
|
10
|
-
|
|
11
|
-
onMounted(async () => {
|
|
12
|
-
const Typewriter = await useTypewriter()
|
|
13
|
-
const target = document.getElementById('terminal-code');
|
|
14
|
-
typewriter = new Typewriter(target, {
|
|
15
|
-
loop: false,
|
|
16
|
-
delay: 1,
|
|
17
|
-
})
|
|
18
|
-
typewriter
|
|
19
|
-
.typeString(`<span>$ vite build</span>`)
|
|
20
|
-
.pauseFor(200)
|
|
21
|
-
.pasteString(`<span class="block w-full h-[1rem]"></span>`)
|
|
22
|
-
.pasteString(`<div class="block"><span class="text-vite">VITE+ v1.0.0</span> <span class="text-aqua">building for production</span></div>`)
|
|
23
|
-
.pauseFor(100)
|
|
24
|
-
.pasteString(`<div class="block">transforming...</div>`)
|
|
25
|
-
.pauseFor(400)
|
|
26
|
-
.pasteString(`<div class="block"><span class="text-zest">✓</span> <span class="text-grey">32 modules transformed...</span></div>`)
|
|
27
|
-
.pauseFor(300)
|
|
28
|
-
.pasteString(`<div class="block">rendering chunks...</div>`)
|
|
29
|
-
.pasteString(`<div class="block">computing gzip size...</div>`)
|
|
30
|
-
.pasteString(`<div class="block text-grey"><span class="w-72 inline-block">dist/<span class="text-white">index.html</span></span> 0.46 kB | gzip: 0.30 kB</div>`)
|
|
31
|
-
.pasteString(`<div class="block text-grey"><span class="w-72 inline-block">dist/assets/<span class="text-vite">react-CHdo91hT.svg</span></span> 4.13 kB | gzip: 2.05 kB</div>`)
|
|
32
|
-
.pasteString(`<div class="block text-grey"><span class="w-72 inline-block">dist/assets/<span class="text-electric">index-D8b4DHJx.css</span></span> 1.39 kB | gzip: 0.71 kB</div>`)
|
|
33
|
-
.pasteString(`<div class="block text-grey"><span class="w-72 inline-block">dist/assets/<span class="text-aqua">index-CAl1KfkQ.js</span></span>188.06 kB | gzip: 59.21 kB</div>`)
|
|
34
|
-
.pasteString(`<div class="block"><span class="text-zest">✓ built in 308ms</span></div>`)
|
|
35
|
-
.pasteString(`<span class="block w-full h-[1rem]"></span>`)
|
|
36
|
-
.callFunction(() => {
|
|
37
|
-
if (props.onAnimationComplete) {
|
|
38
|
-
props.onAnimationComplete()
|
|
39
|
-
}
|
|
40
|
-
})
|
|
41
|
-
.start();
|
|
42
|
-
})
|
|
43
|
-
|
|
44
|
-
onUnmounted(() => {
|
|
45
|
-
if(typewriter){
|
|
46
|
-
typewriter.stop()
|
|
47
|
-
}
|
|
48
|
-
})
|
|
49
|
-
</script>
|
|
50
|
-
|
|
51
|
-
<template>
|
|
52
|
-
<p class="font-mono text-sm text-white leading-[1.5rem]">
|
|
53
|
-
<span id="terminal-code"></span>
|
|
54
|
-
</p>
|
|
55
|
-
</template>
|
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
// Dynamically load Typewriter from CDN
|
|
2
|
-
let TypewriterClass: any = null
|
|
3
|
-
let loadingPromise: Promise<any> | null = null
|
|
4
|
-
|
|
5
|
-
export async function useTypewriter() {
|
|
6
|
-
// Return cached class if already loaded
|
|
7
|
-
if (TypewriterClass) {
|
|
8
|
-
return TypewriterClass
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
// Return existing loading promise if already loading
|
|
12
|
-
if (loadingPromise) {
|
|
13
|
-
return loadingPromise
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
// Start loading from CDN
|
|
17
|
-
loadingPromise = new Promise((resolve, reject) => {
|
|
18
|
-
// Check if already loaded globally
|
|
19
|
-
if ((window as any).Typewriter) {
|
|
20
|
-
TypewriterClass = (window as any).Typewriter
|
|
21
|
-
resolve(TypewriterClass)
|
|
22
|
-
return
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
// Create script tag to load from CDN
|
|
26
|
-
const script = document.createElement('script')
|
|
27
|
-
script.src = 'https://unpkg.com/typewriter-effect@2.22.0/dist/core.js'
|
|
28
|
-
script.async = true
|
|
29
|
-
|
|
30
|
-
script.onload = () => {
|
|
31
|
-
TypewriterClass = (window as any).Typewriter
|
|
32
|
-
resolve(TypewriterClass)
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
script.onerror = () => {
|
|
36
|
-
reject(new Error('Failed to load Typewriter from CDN'))
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
document.head.appendChild(script)
|
|
40
|
-
})
|
|
41
|
-
|
|
42
|
-
return loadingPromise
|
|
43
|
-
}
|