-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
180 changed files
with
703 additions
and
717 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
更新 TS 项目用 esmodule | ||
删除类型系统,并补充相关笔记 | ||
更改命名惯例为 lisp-case | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,5 @@ | ||
#!/usr/bin/env node | ||
|
||
const process = require("process") | ||
|
||
process.on("unhandledRejection", (error) => { | ||
console.error(error) | ||
process.exit(1) | ||
}) | ||
|
||
const { createCommandRunner } = require("../lib/command-line") | ||
import { createCommandRunner } from "../lib/command-line/index.js" | ||
|
||
createCommandRunner().run() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,7 @@ | ||
import { AppConfig } from "./AppConfig" | ||
import { AppHome } from "./AppHome.js" | ||
import { AppReplEventHandler } from "./AppReplEventHandler" | ||
import { AppReplEventHandler } from "./AppReplEventHandler.js" | ||
|
||
export class App { | ||
home = new AppHome() | ||
config = new AppConfig() | ||
replEventHandler = new AppReplEventHandler() | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
import { App } from "./App" | ||
import { App } from "./App.js" | ||
|
||
export const app = new App() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
export * from "@xieyuheng/command-line/lib/commands" | ||
export * from "./Default" | ||
export * from "./Repl" | ||
export * from "./Run" | ||
export * from "@xieyuheng/command-line/lib/commands/index.js" | ||
export * from "./Default.js" | ||
export * from "./Repl.js" | ||
export * from "./Run.js" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
export * from "./Fetcher" | ||
export * from "./Fetcher.js" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
export * from "./fetcher" | ||
export * from "./lang/cap" | ||
export * from "./lang/definition" | ||
export * from "./lang/edge" | ||
export * from "./lang/env" | ||
export * from "./lang/errors" | ||
export * from "./lang/interact" | ||
export * from "./lang/mod" | ||
export * from "./lang/net" | ||
export * from "./lang/node" | ||
export * from "./lang/port" | ||
export * from "./lang/present" | ||
export * from "./lang/rule" | ||
export * from "./lang/run" | ||
export * from "./lang/syntax" | ||
export * from "./lang/value" | ||
export * from "./lang/word" | ||
export * from "./loader" | ||
export * from "./fetcher/index.js" | ||
export * from "./lang/cap/index.js" | ||
export * from "./lang/definition/index.js" | ||
export * from "./lang/edge/index.js" | ||
export * from "./lang/env/index.js" | ||
export * from "./lang/errors/index.js" | ||
export * from "./lang/interact/index.js" | ||
export * from "./lang/mod/index.js" | ||
export * from "./lang/net/index.js" | ||
export * from "./lang/node/index.js" | ||
export * from "./lang/port/index.js" | ||
export * from "./lang/present/index.js" | ||
export * from "./lang/rule/index.js" | ||
export * from "./lang/run/index.js" | ||
export * from "./lang/syntax/index.js" | ||
export * from "./lang/value/index.js" | ||
export * from "./lang/word/index.js" | ||
export * from "./loader/index.js" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.