Skip to content

Commit 9e79847

Browse files
committed
Remove build step
1 parent 001ee8d commit 9e79847

15 files changed

+24
-48
lines changed

bin/postpack.js

-10
This file was deleted.

eslint.config.js

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ export default tseslint.config(
88
...tseslint.configs.recommendedTypeChecked,
99
...tseslint.configs.stylisticTypeChecked,
1010
importPlugin.flatConfigs.recommended, // eslint-disable-line @typescript-eslint/no-unsafe-argument, @typescript-eslint/no-unsafe-member-access
11+
importPlugin.flatConfigs.typescript, // eslint-disable-line @typescript-eslint/no-unsafe-argument, @typescript-eslint/no-unsafe-member-access
1112
stylistic.configs.customize({
1213
arrowParens: true,
1314
braceStyle: "1tbs",

package.json

+1-4
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,8 @@
2929
"scripts": {
3030
"lint": "eslint src",
3131
"test": "vitest --watch=false",
32-
"coverage": "vitest run --coverage",
3332
"type-check": "tsc --noEmit",
34-
"docs": "typedoc",
35-
"prepack": "tsc --project tsconfig.build.json",
36-
"postpack": "node ./bin/postpack.js"
33+
"docs": "typedoc"
3734
},
3835
"devDependencies": {
3936
"@stylistic/eslint-plugin": "*",

src/hyperjump/index.d.ts

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
/**
2+
* @module hyperjump
3+
*/
4+
5+
export * from "./hyperjump.js";
6+
export * from "./uri-schemes/uri-scheme-plugin.d.ts";
7+
export * from "./uri-schemes/file-scheme-plugin.js";
8+
export * from "./uri-schemes/http-scheme-plugin.js";
9+
export * from "./media-types/media-type-plugin.d.ts";
10+
export * from "./media-types/json-media-type-plugin.js";
11+
export * from "./media-types/jref-media-type-plugin.js";

src/hyperjump/index.js

-8
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,5 @@
1-
/**
2-
* @module hyperjump
3-
*/
4-
51
export * from "./hyperjump.js";
6-
// eslint-disable-next-line import/extensions
7-
export * from "./uri-schemes/uri-scheme-plugin.js";
82
export * from "./uri-schemes/file-scheme-plugin.js";
93
export * from "./uri-schemes/http-scheme-plugin.js";
10-
// eslint-disable-next-line import/extensions
11-
export * from "./media-types/media-type-plugin.js";
124
export * from "./media-types/json-media-type-plugin.js";
135
export * from "./media-types/jref-media-type-plugin.js";

src/hyperjump/media-types/media-type-plugin.js

-1
This file was deleted.

src/hyperjump/uri-schemes/uri-scheme-plugin.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { GetOptions } from "../hyperjump.js"; // eslint-disable-line import/named
1+
import { GetOptions } from "../hyperjump.js";
22

33

44
// eslint-disable-next-line @typescript-eslint/consistent-type-definitions

src/hyperjump/uri-schemes/uri-scheme-plugin.js

-1
This file was deleted.

src/jref/index.d.ts

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
export * from "./jref-util.js";
2+
export * from "./jref-parse.js";
3+
export * from "./jref-stringify.js";
4+
export * from "./jref.js";
5+
export * from "./jref-ast.d.ts";

src/jref/index.js

-2
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,3 @@ export * from "./jref-util.js";
22
export * from "./jref-parse.js";
33
export * from "./jref-stringify.js";
44
export * from "./jref.js";
5-
// eslint-disable-next-line import/extensions
6-
export * from "./jref-ast.js";

src/jref/jref-ast.js

-1
This file was deleted.

src/json/index.d.ts

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
export * from "./jsonast-util.js";
2+
export * from "./rejson-parse.js";
3+
export * from "./rejson-stringify.js";
4+
export * from "./rejson.js";
5+
export * from "./jsonast.d.ts";

src/json/index.js

-2
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,3 @@ export * from "./jsonast-util.js";
22
export * from "./rejson-parse.js";
33
export * from "./rejson-stringify.js";
44
export * from "./rejson.js";
5-
// eslint-disable-next-line import/extensions
6-
export * from "./jsonast.js";

src/json/jsonast.js

-1
This file was deleted.

tsconfig.build.json

-17
This file was deleted.

0 commit comments

Comments
 (0)