@trebired/bundler 2.0.0 → 3.0.0
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/CHANGELOG.md +12 -0
- package/README.md +207 -287
- package/dist/core/asset-manifest.d.ts.map +1 -1
- package/dist/core/asset-manifest.js +70 -72
- package/dist/core/asset-manifest.js.map +1 -1
- package/dist/core/build.d.ts.map +1 -1
- package/dist/core/build.js +5 -10
- package/dist/core/build.js.map +1 -1
- package/dist/core/derive-manifest.d.ts.map +1 -1
- package/dist/core/derive-manifest.js +4 -0
- package/dist/core/derive-manifest.js.map +1 -1
- package/dist/core/discovery.d.ts +13 -17
- package/dist/core/discovery.d.ts.map +1 -1
- package/dist/core/discovery.js +276 -277
- package/dist/core/discovery.js.map +1 -1
- package/dist/core/esbuild-options.d.ts +1 -3
- package/dist/core/esbuild-options.d.ts.map +1 -1
- package/dist/core/esbuild-options.js +4 -21
- package/dist/core/esbuild-options.js.map +1 -1
- package/dist/core/manifest.d.ts +2 -2
- package/dist/core/manifest.d.ts.map +1 -1
- package/dist/core/manifest.js +2 -11
- package/dist/core/manifest.js.map +1 -1
- package/dist/core/shared.d.ts +3 -9
- package/dist/core/shared.d.ts.map +1 -1
- package/dist/core/shared.js +5 -22
- package/dist/core/shared.js.map +1 -1
- package/dist/core/watch.d.ts.map +1 -1
- package/dist/core/watch.js +20 -32
- package/dist/core/watch.js.map +1 -1
- package/dist/index.d.ts +1 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +0 -1
- package/dist/index.js.map +1 -1
- package/dist/plugins/virtual-entries.js +1 -1
- package/dist/plugins/virtual-entries.js.map +1 -1
- package/dist/types.d.ts +67 -32
- package/dist/types.d.ts.map +1 -1
- package/package.json +2 -2
package/dist/types.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { Format, Metafile } from "esbuild";
|
|
2
2
|
import type { LoggerAdapterEvent, LoggerAdapterGenericLogMethod, LoggerAdapterLogger, LoggerAdapterLogMethod, LoggerAdapterWriter, NormalizedLoggerAdapter } from "@trebired/logger-adapter";
|
|
3
3
|
type BundlerLogger = LoggerAdapterLogger;
|
|
4
4
|
type BundlerLoggerAdapter = LoggerAdapterWriter;
|
|
@@ -7,29 +7,49 @@ type BundlerGenericLogMethod = LoggerAdapterGenericLogMethod;
|
|
|
7
7
|
type BundlerLogEvent = LoggerAdapterEvent;
|
|
8
8
|
type NormalizedBundlerLogger = NormalizedLoggerAdapter;
|
|
9
9
|
type BundlerVirtualEntryLoader = "css" | "ts";
|
|
10
|
+
type BundlerDiscoverRuleStrategy = "entry" | "bundle" | "ignore";
|
|
11
|
+
type BundlerEntryKind = "entry" | "bundle";
|
|
12
|
+
type BundlerEntrySource = "discover" | "internal";
|
|
13
|
+
type BundlerDiscoverRule = {
|
|
14
|
+
key: string;
|
|
15
|
+
include: string[];
|
|
16
|
+
exclude?: string[];
|
|
17
|
+
strategy: BundlerDiscoverRuleStrategy;
|
|
18
|
+
maxBundleSize?: number | string;
|
|
19
|
+
};
|
|
10
20
|
type BundlerDiscoverOptions = {
|
|
11
21
|
dir: string;
|
|
12
|
-
|
|
13
|
-
exclude?: string[];
|
|
14
|
-
extensions?: string[];
|
|
22
|
+
rules: BundlerDiscoverRule[];
|
|
15
23
|
ignoreDirs?: string[];
|
|
16
|
-
maxBundleSize?: number | string;
|
|
17
|
-
namePrefix?: string;
|
|
18
24
|
};
|
|
19
25
|
type BundlerManifestOptions = boolean | {
|
|
20
26
|
file?: string;
|
|
21
27
|
};
|
|
22
|
-
type BundlerVirtualEntries = Record<string, string>;
|
|
23
|
-
type BundlerMode = "debug" | "compact" | "extreme";
|
|
24
28
|
type BundlerEnvironment = "browser" | "node" | "neutral";
|
|
25
|
-
type BundlerEntrySource = "manual" | "discover" | "virtual";
|
|
26
29
|
type BundlerEntryRecord = {
|
|
27
30
|
contents?: string;
|
|
31
|
+
entrySource?: string;
|
|
32
|
+
key: string;
|
|
33
|
+
kind: BundlerEntryKind;
|
|
28
34
|
name: string;
|
|
35
|
+
ownedSources: string[];
|
|
29
36
|
path: string;
|
|
37
|
+
ruleKey: string;
|
|
30
38
|
source: BundlerEntrySource;
|
|
39
|
+
strategy: Exclude<BundlerDiscoverRuleStrategy, "ignore">;
|
|
31
40
|
virtualLoader?: BundlerVirtualEntryLoader;
|
|
32
41
|
};
|
|
42
|
+
type BundlerResolvedRule = {
|
|
43
|
+
entryKeys: string[];
|
|
44
|
+
ignoredSources: string[];
|
|
45
|
+
ruleKey: string;
|
|
46
|
+
strategy: BundlerDiscoverRuleStrategy;
|
|
47
|
+
};
|
|
48
|
+
type BundlerResolvedDiscovery = {
|
|
49
|
+
entries: BundlerEntryRecord[];
|
|
50
|
+
rules: Record<string, BundlerResolvedRule>;
|
|
51
|
+
sourceOwners: Record<string, string>;
|
|
52
|
+
};
|
|
33
53
|
type BundlerDerivedManifestEntry = {
|
|
34
54
|
entryOutput: string;
|
|
35
55
|
entryName?: string;
|
|
@@ -60,43 +80,60 @@ type BundlerDerivedManifest = {
|
|
|
60
80
|
chunks: Record<string, BundlerDerivedManifestChunk>;
|
|
61
81
|
allOutputs: Record<string, BundlerDerivedManifestOutput>;
|
|
62
82
|
};
|
|
63
|
-
type BundlerResolvedEntriesInput = BundlerEntryRecord[] | Record<string, string>;
|
|
64
83
|
type BundlerAssetManifestEntry = {
|
|
65
|
-
|
|
84
|
+
assets: string[];
|
|
85
|
+
css: string[];
|
|
86
|
+
entryOutput: string;
|
|
66
87
|
entrySource?: string;
|
|
67
88
|
file: string;
|
|
68
|
-
entryOutput: string;
|
|
69
|
-
outputs: string[];
|
|
70
|
-
js: string[];
|
|
71
|
-
css: string[];
|
|
72
|
-
assets: string[];
|
|
73
89
|
imports: string[];
|
|
90
|
+
js: string[];
|
|
91
|
+
key: string;
|
|
92
|
+
kind: BundlerEntryKind;
|
|
93
|
+
outputs: string[];
|
|
94
|
+
ruleKey: string;
|
|
95
|
+
sources: string[];
|
|
96
|
+
strategy: Exclude<BundlerDiscoverRuleStrategy, "ignore">;
|
|
97
|
+
};
|
|
98
|
+
type BundlerAssetManifestSource = {
|
|
99
|
+
entryKey: string;
|
|
100
|
+
outputs: string[];
|
|
101
|
+
ruleKey: string;
|
|
102
|
+
source: string;
|
|
103
|
+
strategy: Exclude<BundlerDiscoverRuleStrategy, "ignore">;
|
|
104
|
+
};
|
|
105
|
+
type BundlerAssetManifestRule = {
|
|
106
|
+
entryKeys: string[];
|
|
107
|
+
ignoredSources: string[];
|
|
108
|
+
ruleKey: string;
|
|
109
|
+
strategy: BundlerDiscoverRuleStrategy;
|
|
74
110
|
};
|
|
75
111
|
type BundlerAssetManifestOutput = {
|
|
76
|
-
|
|
77
|
-
kind: BundlerDerivedManifestOutputKind;
|
|
78
|
-
entryName?: string;
|
|
79
|
-
entrySource?: string;
|
|
80
|
-
entryPoint?: string;
|
|
81
|
-
inputs: string[];
|
|
112
|
+
bytes: number;
|
|
82
113
|
css: string[];
|
|
114
|
+
entryKey?: string;
|
|
115
|
+
entryPoint?: string;
|
|
83
116
|
imports: string[];
|
|
84
|
-
|
|
117
|
+
inputs: string[];
|
|
118
|
+
kind: BundlerDerivedManifestOutputKind;
|
|
119
|
+
output: string;
|
|
120
|
+
ruleKey?: string;
|
|
121
|
+
strategy?: Exclude<BundlerDiscoverRuleStrategy, "ignore">;
|
|
85
122
|
};
|
|
86
123
|
type BundlerAssetManifest = {
|
|
87
124
|
entries: Record<string, BundlerAssetManifestEntry>;
|
|
88
|
-
entryNames: Record<string, string>;
|
|
89
|
-
entrySources: Record<string, string>;
|
|
90
125
|
entryOutputs: Record<string, string>;
|
|
91
126
|
outputs: Record<string, BundlerAssetManifestOutput>;
|
|
127
|
+
rules: Record<string, BundlerAssetManifestRule>;
|
|
128
|
+
sources: Record<string, BundlerAssetManifestSource>;
|
|
92
129
|
};
|
|
93
130
|
type BundlerBuildAssetManifestOptions = {
|
|
94
131
|
metafile: Metafile;
|
|
132
|
+
resolvedDiscovery?: BundlerResolvedDiscovery;
|
|
95
133
|
rootDir: string;
|
|
96
134
|
outDir: string;
|
|
97
|
-
resolvedEntries?: BundlerResolvedEntriesInput;
|
|
98
135
|
};
|
|
99
|
-
type BundlerCollectAssetLinksLookup = "auto" | "entryKey" | "
|
|
136
|
+
type BundlerCollectAssetLinksLookup = "auto" | "entryKey" | "entryOutput" | "source";
|
|
100
137
|
type BundlerCollectAssetLinksOptions = {
|
|
101
138
|
from?: BundlerCollectAssetLinksLookup;
|
|
102
139
|
publicPath?: string;
|
|
@@ -137,12 +174,9 @@ type BundlerImportGraphOptions = {
|
|
|
137
174
|
tsconfig?: BundlerImportGraphTsconfigOptions;
|
|
138
175
|
};
|
|
139
176
|
type BundlerOptions = {
|
|
140
|
-
|
|
141
|
-
discover?: BundlerDiscoverOptions | BundlerDiscoverOptions[];
|
|
142
|
-
virtualEntries?: BundlerVirtualEntries;
|
|
177
|
+
discover: BundlerDiscoverOptions | BundlerDiscoverOptions[];
|
|
143
178
|
outDir: string;
|
|
144
179
|
rootDir?: string;
|
|
145
|
-
mode?: BundlerMode;
|
|
146
180
|
environment?: BundlerEnvironment;
|
|
147
181
|
format?: Format;
|
|
148
182
|
target?: string | string[];
|
|
@@ -169,6 +203,7 @@ type BundlerBuildResult = {
|
|
|
169
203
|
assetManifest?: BundlerAssetManifest;
|
|
170
204
|
manifestPath?: string;
|
|
171
205
|
durationMs: number;
|
|
206
|
+
resolvedDiscovery: BundlerResolvedDiscovery;
|
|
172
207
|
};
|
|
173
208
|
type BundlerWatchSession = {
|
|
174
209
|
rebuild(): Promise<BundlerBuildResult>;
|
|
@@ -178,5 +213,5 @@ type LoadedBundlerConfig = {
|
|
|
178
213
|
config: BundlerOptions;
|
|
179
214
|
configPath: string;
|
|
180
215
|
};
|
|
181
|
-
export type { BundlerAssetManifest, BundlerAssetManifestEntry, BundlerAssetManifestOutput, BundlerBuildAssetManifestOptions, BundlerBuildResult, BundlerCollectedAssetLinks, BundlerCollectAssetLinksLookup, BundlerCollectAssetLinksOptions,
|
|
216
|
+
export type { BundlerAssetManifest, BundlerAssetManifestEntry, BundlerAssetManifestOutput, BundlerAssetManifestRule, BundlerAssetManifestSource, BundlerBuildAssetManifestOptions, BundlerBuildResult, BundlerCollectedAssetLinks, BundlerCollectAssetLinksLookup, BundlerCollectAssetLinksOptions, BundlerDerivedManifest, BundlerDerivedManifestChunk, BundlerDerivedManifestEntry, BundlerDerivedManifestOutput, BundlerDerivedManifestOutputKind, BundlerDiscoverOptions, BundlerDiscoverRule, BundlerDiscoverRuleStrategy, BundlerEntryKind, BundlerEntryRecord, BundlerEntrySource, BundlerEnvironment, BundlerGenericLogMethod, BundlerImportGraph, BundlerImportGraphFile, BundlerImportGraphImport, BundlerImportGraphImportKind, BundlerImportGraphOptions, BundlerImportGraphTsconfigOptions, BundlerLogEvent, BundlerLogger, BundlerLoggerAdapter, BundlerLogMethod, BundlerManifestOptions, BundlerOptions, BundlerResolvedDiscovery, BundlerResolvedRule, BundlerTsconfigPaths, BundlerVirtualEntryLoader, BundlerWatchSession, LoadedBundlerConfig, NormalizedBundlerLogger, };
|
|
182
217
|
//# sourceMappingURL=types.d.ts.map
|
package/dist/types.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trebired/bundler",
|
|
3
|
-
"version": "
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "3.0.0",
|
|
4
|
+
"description": "Discover-only esbuild bundler wrapper with SCSS support, watch mode, and runtime asset manifests.",
|
|
5
5
|
"license": "AGPL-3.0-only",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"bundler",
|