Compare commits
No commits in common. "1eaef04215b222c5183039ceabfab7e32c0c344d" and "685ff08b78d2da0ab4043f06dc3c40f4be2aa58f" have entirely different histories.
1eaef04215
...
685ff08b78
File diff suppressed because it is too large
Load Diff
|
|
@ -60,6 +60,7 @@
|
||||||
"@types/jest": "^30.0.0",
|
"@types/jest": "^30.0.0",
|
||||||
"@types/js-yaml": "^4.0.9",
|
"@types/js-yaml": "^4.0.9",
|
||||||
"@types/node": "^22.19.13",
|
"@types/node": "^22.19.13",
|
||||||
|
"inline-schema": "file:../inline-schema",
|
||||||
"jest": "^29.7.0",
|
"jest": "^29.7.0",
|
||||||
"jest-environment-jsdom": "^29.7.0",
|
"jest-environment-jsdom": "^29.7.0",
|
||||||
"tailwindcss": "^4.0.0",
|
"tailwindcss": "^4.0.0",
|
||||||
|
|
|
||||||
|
|
@ -19,6 +19,13 @@ export default defineConfig({
|
||||||
rspack: {
|
rspack: {
|
||||||
module: {
|
module: {
|
||||||
rules: [
|
rules: [
|
||||||
|
{
|
||||||
|
test: /\.schema\.csv$/,
|
||||||
|
loader: 'inline-schema/csv-loader',
|
||||||
|
options: {
|
||||||
|
writeToDisk: true
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
test: /\.md|\.yarn|\.csv$/,
|
test: /\.md|\.yarn|\.csv$/,
|
||||||
exclude: /\.schema\.csv$/,
|
exclude: /\.schema\.csv$/,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue