edacation 0.4.0 → 0.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli/util.d.ts +2 -1
- package/dist/project/configuration.d.ts +114 -1320
- package/dist/project/configuration.js +10 -9
- package/dist/project/configuration.js.map +1 -1
- package/dist/project/project.d.ts +93 -33
- package/dist/project/project.js +441 -27
- package/dist/project/project.js.map +1 -1
- package/dist/project/target.d.ts +1 -0
- package/dist/project/target.js +3 -2
- package/dist/project/target.js.map +1 -1
- package/dist/util.d.ts +2 -2
- package/package.json +12 -10
package/dist/util.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export type ArrayElement<ArrayType extends readonly unknown[]> = ArrayType extends readonly (infer ElementType)[] ? ElementType : never;
|
|
2
|
-
export declare const encodeText: (input: string) => Uint8Array
|
|
3
|
-
export declare const encodeJSON: (input: unknown, pretty?: boolean) => Uint8Array
|
|
2
|
+
export declare const encodeText: (input: string) => Uint8Array<ArrayBufferLike>;
|
|
3
|
+
export declare const encodeJSON: (input: unknown, pretty?: boolean) => Uint8Array<ArrayBufferLike>;
|
|
4
4
|
export declare const decodeText: (input: NodeJS.ArrayBufferView | ArrayBuffer) => string;
|
|
5
5
|
export declare const decodeJSON: (input: NodeJS.ArrayBufferView | ArrayBuffer) => unknown;
|
|
6
6
|
export declare const FILE_EXTENSIONS_VERILOG: string[];
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "edacation",
|
|
3
3
|
"description": "Library and CLI for interacting with Yosys and nextpnr.",
|
|
4
4
|
"license": "MIT",
|
|
5
|
-
"version": "0.
|
|
5
|
+
"version": "0.5.1",
|
|
6
6
|
"contributors": [
|
|
7
7
|
"Danielle Huisman <danielle@huisman.me> (https://github.com/DanielleHuisman)",
|
|
8
8
|
"Mike Almeloo <git@mikealmel.ooo> (https://github.com/DismissedGuy)"
|
|
@@ -33,20 +33,22 @@
|
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"string-args-parser": "^1.0.4",
|
|
36
|
-
"yargs": "^
|
|
37
|
-
"zod": "^
|
|
36
|
+
"yargs": "^18.0.0",
|
|
37
|
+
"zod": "^4.1.5"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@
|
|
40
|
+
"@eslint/eslintrc": "^3.3.1",
|
|
41
|
+
"@eslint/js": "^9.35.0",
|
|
42
|
+
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
|
|
41
43
|
"@types/node": "^20.14.8",
|
|
42
44
|
"@types/yargs": "^17.0.32",
|
|
43
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
44
|
-
"@typescript-eslint/parser": "^8.
|
|
45
|
-
"eslint": "^
|
|
45
|
+
"@typescript-eslint/eslint-plugin": "^8.43.0",
|
|
46
|
+
"@typescript-eslint/parser": "^8.43.0",
|
|
47
|
+
"eslint": "^9.0.0",
|
|
46
48
|
"eslint-config-google": "^0.14.0",
|
|
47
|
-
"eslint-plugin-import": "^2.
|
|
48
|
-
"prettier": "^3.
|
|
49
|
+
"eslint-plugin-import": "^2.32.0",
|
|
50
|
+
"prettier": "^3.6.2",
|
|
49
51
|
"ts-node": "^10.9.2",
|
|
50
|
-
"typescript": "^5.
|
|
52
|
+
"typescript": "^5.9.2"
|
|
51
53
|
}
|
|
52
54
|
}
|