-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
put all code connect calls in one file
- Loading branch information
1 parent
9cfdbd8
commit 92759a2
Showing
559 changed files
with
4,483 additions
and
2,855 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,11 +1,11 @@ | ||
import { readFileSync } from "fs"; | ||
import { generateCodeConnectFiles } from "../../dist/scripts/code-connect/generate-code-connect-files.js"; | ||
import { generateCodeConnectFile } from "../../dist/scripts/code-connect/generate-code-connect-file.js"; | ||
|
||
const main = async () => { | ||
const iconManifest = new Map(Object.entries(JSON.parse(readFileSync("../../outputs/icon-manifest.json")))); | ||
const dir = "../../outputs/code-connect"; | ||
const dir = "../../outputs"; | ||
|
||
generateCodeConnectFiles(dir, iconManifest); | ||
generateCodeConnectFile(dir, iconManifest); | ||
}; | ||
|
||
main(); |
Oops, something went wrong.