-
Notifications
You must be signed in to change notification settings - Fork 46
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
impart我的impart
committed
Mar 8, 2024
1 parent
c612db0
commit 7ea06d1
Showing
4 changed files
with
73 additions
and
135 deletions.
There are no files selected for viewing
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,19 @@ | ||
import { chronocat } from '@chronocat/shell' | ||
import { apply as ccApi } from '@chronocat/engine-chronocat-api' | ||
import { version as ccApiVersion } from '@chronocat/engine-chronocat-api/package.json' | ||
import { version as ccEventVersion } from '@chronocat/engine-chronocat-event/package.json' | ||
import { apply as ccEvent } from '@chronocat/engine-chronocat-event' | ||
|
||
void chronocat() | ||
void chronocat().then(x => { | ||
x?.load({ | ||
name: 'engine-chronocat-api', | ||
version: ccApiVersion, | ||
apply: ccApi | ||
}) | ||
|
||
x?.load({ | ||
name: 'engine-chronocat-event', | ||
version: ccEventVersion, | ||
apply: ccEvent | ||
}) | ||
}) |
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