|
1 |
| -import { resolve } from 'https://deno.land/[email protected]/path/mod.ts' |
| 1 | +import { bold } from 'https://deno.land/[email protected]/fmt/colors.ts' |
| 2 | +import { basename, resolve } from 'https://deno.land/[email protected]/path/mod.ts' |
2 | 3 | import { parse } from 'https://deno.land/[email protected]/flags/mod.ts'
|
3 |
| -import { existsDir } from './shared/fs.ts' |
4 |
| -import log, { LevelNames } from './shared/log.ts' |
| 4 | +import { loadImportMap } from './server/config.ts' |
| 5 | +import { existsDir, findFile } from './shared/fs.ts' |
| 6 | +import log from './shared/log.ts' |
5 | 7 | import util from './shared/util.ts'
|
6 | 8 | import { VERSION } from './version.ts'
|
7 | 9 |
|
@@ -61,40 +63,95 @@ async function main() {
|
61 | 63 | }
|
62 | 64 |
|
63 | 65 | const command = String(args.shift()) as keyof typeof commands
|
64 |
| - const { default: cmd, helpMessage: cmdHelpMessage } = await import(`./commands/${command}.ts`) |
65 | 66 |
|
66 | 67 | // prints command help message
|
67 | 68 | if (options.h || options.help) {
|
| 69 | + const { helpMessage: cmdHelpMessage } = await import(`./commands/${command}.ts`) |
68 | 70 | console.log(commands[command])
|
69 | 71 | console.log(cmdHelpMessage)
|
70 | 72 | Deno.exit(0)
|
71 | 73 | }
|
72 | 74 |
|
73 | 75 | // execute `init` command
|
74 | 76 | if (command === 'init') {
|
75 |
| - await cmd(options?.template, args[0]) |
| 77 | + const { default: init } = await import(`./commands/init.ts`) |
| 78 | + await init(options?.template, args[0]) |
76 | 79 | return
|
77 | 80 | }
|
78 | 81 |
|
79 | 82 | // execute `upgrade` command
|
80 | 83 | if (command === 'upgrade') {
|
81 |
| - await cmd(options.v || options.version || args[0] || 'latest') |
| 84 | + const { default: upgrade } = await import(`./commands/upgrade.ts`) |
| 85 | + await upgrade(options.v || options.version || args[0] || 'latest') |
82 | 86 | return
|
83 | 87 | }
|
84 | 88 |
|
85 |
| - // set log level |
86 |
| - const l = options.L || options['log-level'] |
87 |
| - if (util.isFilledString(l)) { |
88 |
| - log.setLevel(l.toLowerCase() as LevelNames) |
89 |
| - } |
90 |
| - |
91 | 89 | // check working dir
|
92 | 90 | const workingDir = resolve(String(args[0] || '.'))
|
93 | 91 | if (!await existsDir(workingDir)) {
|
94 | 92 | log.fatal('No such directory:', workingDir)
|
95 | 93 | }
|
96 | 94 |
|
97 |
| - await cmd(workingDir, options) |
| 95 | + // run the command if import maps exists |
| 96 | + const importMapFile = await findFile(workingDir, ['import_map', 'import-map', 'importmap', 'importMap'].map(name => `${name}.json`)) |
| 97 | + if (importMapFile) { |
| 98 | + const importMap = await loadImportMap(importMapFile) |
| 99 | + let updateImportMaps: boolean | null = null |
| 100 | + let verison: string | null = null |
| 101 | + for (const key in importMap.imports) { |
| 102 | + const url = importMap.imports[key] |
| 103 | + console.log(url, /\/\/deno\.land\/x\/aleph@v?\d+\.\d+\.\d+(-[a-z0-9\.]+)?\//.test(url)) |
| 104 | + if (/\/\/deno\.land\/x\/aleph@v?\d+\.\d+\.\d+(-[a-z0-9\.]+)?\//.test(url)) { |
| 105 | + const [prefix, rest] = util.splitBy(url, '@') |
| 106 | + const [ver, suffix] = util.splitBy(rest, '/') |
| 107 | + console.log(ver) |
| 108 | + if (ver !== 'v' + VERSION && updateImportMaps === null) { |
| 109 | + updateImportMaps = confirm(`You are using a different version of Aleph.js, expect ${ver} -> v${bold(VERSION)}, update '${basename(importMapFile)}'?`) |
| 110 | + } |
| 111 | + if (updateImportMaps) { |
| 112 | + importMap.imports[key] = `${prefix}@v${VERSION}/${suffix}` |
| 113 | + } else if (verison === null) { |
| 114 | + verison = ver |
| 115 | + } |
| 116 | + } |
| 117 | + } |
| 118 | + if (updateImportMaps) { |
| 119 | + await Deno.writeTextFile(importMapFile, JSON.stringify(importMap, undefined, 2)) |
| 120 | + } |
| 121 | + await run(command, verison || undefined, importMapFile) |
| 122 | + } |
| 123 | + |
| 124 | + // run the command without import maps |
| 125 | + await run(command) |
| 126 | +} |
| 127 | + |
| 128 | +async function run(name: string, version?: string, importMap?: string) { |
| 129 | + const cmd: string[] = [ |
| 130 | + Deno.execPath(), |
| 131 | + 'run', |
| 132 | + '-A', |
| 133 | + '--unstable', |
| 134 | + '--no-check', |
| 135 | + '--location', 'http://localhost/' |
| 136 | + ] |
| 137 | + if (importMap) { |
| 138 | + cmd.push('--import-map', importMap) |
| 139 | + } |
| 140 | + if (!version || version === 'v' + VERSION) { |
| 141 | + cmd.push(`./commands/${name}.ts`) |
| 142 | + } else { |
| 143 | + cmd.push(`https://deno.land/x/aleph@${version}/commands/${name}.ts`) |
| 144 | + } |
| 145 | + cmd.push(...Deno.args.slice(1)) |
| 146 | + console.log(cmd.join(' ')) |
| 147 | + const p = Deno.run({ |
| 148 | + cmd, |
| 149 | + stdout: 'inherit', |
| 150 | + stderr: 'inherit' |
| 151 | + }) |
| 152 | + const c = await p.status() |
| 153 | + console.log(c) |
| 154 | + p.close() |
98 | 155 | }
|
99 | 156 |
|
100 | 157 | if (import.meta.main) {
|
|
0 commit comments