Skip to content

Commit fabdce1

Browse files
committed
Don't compile aleph.config.ts and api modules
1 parent 68ae617 commit fabdce1

File tree

11 files changed

+194
-119
lines changed

11 files changed

+194
-119
lines changed

cli.ts

+70-13
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
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'
23
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'
57
import util from './shared/util.ts'
68
import { VERSION } from './version.ts'
79

@@ -61,40 +63,95 @@ async function main() {
6163
}
6264

6365
const command = String(args.shift()) as keyof typeof commands
64-
const { default: cmd, helpMessage: cmdHelpMessage } = await import(`./commands/${command}.ts`)
6566

6667
// prints command help message
6768
if (options.h || options.help) {
69+
const { helpMessage: cmdHelpMessage } = await import(`./commands/${command}.ts`)
6870
console.log(commands[command])
6971
console.log(cmdHelpMessage)
7072
Deno.exit(0)
7173
}
7274

7375
// execute `init` command
7476
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])
7679
return
7780
}
7881

7982
// execute `upgrade` command
8083
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')
8286
return
8387
}
8488

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-
9189
// check working dir
9290
const workingDir = resolve(String(args[0] || '.'))
9391
if (!await existsDir(workingDir)) {
9492
log.fatal('No such directory:', workingDir)
9593
}
9694

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()
98155
}
99156

100157
if (import.meta.main) {

commands/analyze.ts

+12-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { serve } from 'https://deno.land/[email protected]/http/server.ts'
22
import { Aleph } from '../server/aleph.ts'
3-
import { getFlag, parsePortNumber } from '../shared/flags.ts'
3+
import { parse, getFlag, parsePortNumber } from './helper/flags.ts'
44
import log from '../shared/log.ts'
55

66
export const helpMessage = `
@@ -17,9 +17,17 @@ Options:
1717
-h, --help Prints help message
1818
`
1919

20-
export default async function (workingDir: string, flags: Record<string, any>) {
21-
const aleph = new Aleph(workingDir, 'production', Boolean(flags.r || flags.reload))
22-
const port = parsePortNumber(getFlag(flags, ['p', 'port'], '9000'))
20+
export default async function () {
21+
const { args, options } = parse()
22+
23+
// check working dir
24+
const workingDir = resolve(String(args[0] || '.'))
25+
if (!await existsDir(workingDir)) {
26+
log.fatal('No such directory:', workingDir)
27+
}
28+
29+
const aleph = new Aleph(workingDir, 'production', Boolean(options.r || options.reload))
30+
const port = parsePortNumber(getFlag(options, ['p', 'port'], '9000'))
2331
await aleph.ready
2432
const entries = aleph.analyze()
2533
const s = serve({ port })

commands/build.ts

+13-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1+
import { resolve } from 'https://deno.land/[email protected]/path/mod.ts'
12
import { Aleph } from '../server/aleph.ts'
3+
import { parse } from './helper/flags.ts'
4+
import log from '../shared/log.ts'
5+
import { existsDir } from '../shared/fs.ts'
26

37
export const helpMessage = `
48
Usage:
@@ -13,7 +17,15 @@ Options:
1317
-h, --help Prints help message
1418
`
1519

16-
export default async function (workingDir: string, options: Record<string, any>) {
20+
if (import.meta.main) {
21+
const { args, options } = parse()
22+
23+
// check working dir
24+
const workingDir = resolve(String(args[0] || '.'))
25+
if (!await existsDir(workingDir)) {
26+
log.fatal('No such directory:', workingDir)
27+
}
28+
1729
const aleph = new Aleph(workingDir, 'production', Boolean(options.r || options.reload))
1830
await aleph.build()
1931
Deno.exit(0)

commands/dev.ts

+17-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1+
import { resolve } from 'https://deno.land/[email protected]/path/mod.ts'
12
import { Aleph } from '../server/aleph.ts'
23
import { serve } from '../server/mod.ts'
3-
import { getFlag, parsePortNumber } from '../shared/flags.ts'
4+
import { getFlag, parse, parsePortNumber } from './helper/flags.ts'
45
import log from '../shared/log.ts'
6+
import { existsDir } from '../shared/fs.ts'
57

68
export const helpMessage = `
79
Usage:
@@ -20,12 +22,20 @@ Options:
2022
-h, --help Prints help message
2123
`
2224

23-
export default async function (workingDir: string, flags: Record<string, any>) {
24-
const aleph = new Aleph(workingDir, 'development', Boolean(flags.r || flags.reload))
25-
const port = parsePortNumber(getFlag(flags, ['p', 'port'], '8080'))
26-
const hostname = getFlag(flags, ['hostname'])
27-
const certFile = getFlag(flags, ['tls-cert'])
28-
const keyFile = getFlag(flags, ['tls-key'])
25+
if (import.meta.main) {
26+
const { args, options } = parse()
27+
28+
// check working dir
29+
const workingDir = resolve(String(args[0] || '.'))
30+
if (!await existsDir(workingDir)) {
31+
log.fatal('No such directory:', workingDir)
32+
}
33+
34+
const aleph = new Aleph(workingDir, 'development', Boolean(options.r || options.reload))
35+
const port = parsePortNumber(getFlag(options, ['p', 'port'], '8080'))
36+
const hostname = getFlag(options, ['hostname'])
37+
const certFile = getFlag(options, ['tls-cert'])
38+
const keyFile = getFlag(options, ['tls-key'])
2939
if (keyFile !== undefined && certFile === undefined) {
3040
log.fatal('missing `--tls-cert` option')
3141
} else if (certFile !== undefined && keyFile === undefined) {

shared/flags.ts commands/helper/flags.ts

+16
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
import { parse as parseArgs } from 'https://deno.land/[email protected]/flags/mod.ts'
2+
import log, { LevelNames } from '../../shared/log.ts'
3+
import util from '../../shared/util.ts'
4+
5+
export function parse() {
6+
const { _: args, ...options } = parseArgs(Deno.args)
7+
8+
// set log level
9+
const l = options.L || options['log-level']
10+
if (util.isFilledString(l)) {
11+
log.setLevel(l.toLowerCase() as LevelNames)
12+
}
13+
14+
return { args, options }
15+
}
16+
117
/** parse port number */
218
export function parsePortNumber(v: string): number {
319
const num = parseInt(v)

commands/start.ts

+17-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1+
import { resolve } from 'https://deno.land/[email protected]/path/mod.ts'
2+
import { existsDir } from '../shared/fs.ts'
13
import { Aleph } from '../server/aleph.ts'
24
import { serve } from '../server/mod.ts'
3-
import { getFlag, parsePortNumber } from '../shared/flags.ts'
5+
import { getFlag, parse, parsePortNumber } from './helper/flags.ts'
46
import log from '../shared/log.ts'
57

68
export const helpMessage = `
@@ -20,12 +22,20 @@ Options:
2022
-h, --help Prints help message
2123
`
2224

23-
export default async function (workingDir: string, flags: Record<string, any>) {
24-
const aleph = new Aleph(workingDir, 'production', Boolean(flags.r || flags.reload))
25-
const port = parsePortNumber(getFlag(flags, ['p', 'port'], '8080'))
26-
const hostname = getFlag(flags, ['hostname'])
27-
const certFile = getFlag(flags, ['tls-cert'])
28-
const keyFile = getFlag(flags, ['tls-key'])
25+
if (import.meta.main) {
26+
const { args, options } = parse()
27+
28+
// check working dir
29+
const workingDir = resolve(String(args[0] || '.'))
30+
if (!await existsDir(workingDir)) {
31+
log.fatal('No such directory:', workingDir)
32+
}
33+
34+
const aleph = new Aleph(workingDir, 'production', Boolean(options.r || options.reload))
35+
const port = parsePortNumber(getFlag(options, ['p', 'port'], '8080'))
36+
const hostname = getFlag(options, ['hostname'])
37+
const certFile = getFlag(options, ['tls-cert'])
38+
const keyFile = getFlag(options, ['tls-key'])
2939
if (keyFile !== undefined && certFile === undefined) {
3040
log.fatal('missing `--tls-cert` option')
3141
} else if (certFile !== undefined && keyFile === undefined) {

0 commit comments

Comments
 (0)