-
Notifications
You must be signed in to change notification settings - Fork 308
/
Copy pathindex.ts
109 lines (95 loc) · 2.88 KB
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
import { dirname, join } from 'path';
import {
cssFileFilter,
virtualCssFileFilter,
processVanillaFile,
getSourceFromVirtualCssFile,
compile,
vanillaExtractTransformPlugin,
IdentifierOption,
CompileOptions,
} from '@vanilla-extract/integration';
import type { Plugin } from 'esbuild';
const vanillaCssNamespace = 'vanilla-extract-css-ns';
interface VanillaExtractPluginOptions {
outputCss?: boolean;
/**
* @deprecated Use `esbuildOptions.external` instead.
*/
externals?: Array<string>;
runtime?: boolean;
processCss?: (css: string) => Promise<string>;
identifiers?: IdentifierOption;
esbuildOptions?: CompileOptions['esbuildOptions'];
}
export function vanillaExtractPlugin({
outputCss,
externals = [],
runtime = false,
processCss,
identifiers,
esbuildOptions,
}: VanillaExtractPluginOptions = {}): Plugin {
if (runtime) {
// If using runtime CSS then just apply fileScopes and debug IDs to code
return vanillaExtractTransformPlugin({ identOption: identifiers });
}
return {
name: 'vanilla-extract',
setup(build) {
build.onResolve({ filter: virtualCssFileFilter }, (args) => {
return {
path: args.path,
namespace: vanillaCssNamespace,
};
});
build.onLoad(
{ filter: /.*/, namespace: vanillaCssNamespace },
async ({ path }) => {
let { source, fileName } = await getSourceFromVirtualCssFile(path);
if (typeof processCss === 'function') {
source = await processCss(source);
}
const rootDir = build.initialOptions.absWorkingDir ?? process.cwd();
const resolveDir = dirname(join(rootDir, fileName));
return {
contents: source,
loader: 'css',
resolveDir,
};
},
);
build.onLoad({ filter: cssFileFilter }, async ({ path }) => {
const combinedEsbuildOptions = { ...esbuildOptions } ?? {};
const identOption =
identifiers ?? (build.initialOptions.minify ? 'short' : 'debug');
// To avoid a breaking change this combines the `external` option from
// esbuildOptions with the pre-existing externals option.
if (externals) {
if (combinedEsbuildOptions.external) {
combinedEsbuildOptions.external.push(...externals);
} else {
combinedEsbuildOptions.external = externals;
}
}
const { source, watchFiles } = await compile({
filePath: path,
cwd: build.initialOptions.absWorkingDir,
esbuildOptions: combinedEsbuildOptions,
identOption,
});
const contents = await processVanillaFile({
source,
filePath: path,
outputCss,
identOption,
});
return {
contents,
loader: 'js',
watchFiles,
};
});
},
};
}