-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Bumped web configs packages version and now use the shared Rsl…
…ib configs (#231)
- Loading branch information
1 parent
e7de377
commit 3c6bce0
Showing
59 changed files
with
3,670 additions
and
3,433 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
--- | ||
"@squide/firefly-rsbuild-configs": patch | ||
"@squide/firefly-webpack-configs": patch | ||
"@squide/firefly-honeycomb": patch | ||
"@squide/module-federation": patch | ||
"@squide/react-router": patch | ||
"@squide/env-vars": patch | ||
"@squide/firefly": patch | ||
"@squide/i18next": patch | ||
"@squide/fakes": patch | ||
"@squide/core": patch | ||
"@squide/msw": patch | ||
--- | ||
|
||
Packages now includes source code and sourcemap. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,7 @@ | ||
import { pluginReact } from "@rsbuild/plugin-react"; | ||
import { defineConfig } from "@rslib/core"; | ||
import { defineBuildConfig } from "@workleap/rslib-configs"; | ||
import path from "node:path"; | ||
|
||
export default defineConfig({ | ||
lib: [{ | ||
format: "esm", | ||
syntax: "esnext", | ||
bundle: false, | ||
dts: true | ||
}], | ||
source: { | ||
entry: { | ||
index: "./src/**" | ||
}, | ||
tsconfigPath: "./tsconfig.build.json" | ||
}, | ||
output: { | ||
target: "web", | ||
distPath: { | ||
root: "./dist" | ||
}, | ||
cleanDistPath: true, | ||
minify: false | ||
}, | ||
plugins: [pluginReact()] | ||
export default defineBuildConfig({ | ||
react: true, | ||
tsconfigPath: path.resolve("./tsconfig.build.json") | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,6 @@ | ||
import { defineConfig } from "@rslib/core"; | ||
import { defineBuildConfig } from "@workleap/rslib-configs"; | ||
import path from "node:path"; | ||
|
||
export default defineConfig({ | ||
lib: [{ | ||
format: "esm", | ||
syntax: "esnext", | ||
bundle: false, | ||
dts: true | ||
}], | ||
source: { | ||
entry: { | ||
index: "./src/**" | ||
}, | ||
tsconfigPath: "./tsconfig.build.json" | ||
}, | ||
output: { | ||
target: "web", | ||
distPath: { | ||
root: "./dist" | ||
}, | ||
cleanDistPath: true, | ||
minify: false | ||
} | ||
export default defineBuildConfig({ | ||
tsconfigPath: path.resolve("./tsconfig.build.json") | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,7 @@ | ||
import { defineConfig } from "@rslib/core"; | ||
import { defineBuildConfig } from "@workleap/rslib-configs"; | ||
import path from "node:path"; | ||
|
||
export default defineBuildConfig({ | ||
tsconfigPath: path.resolve("./tsconfig.build.json") | ||
|
||
export default defineConfig({ | ||
lib: [{ | ||
format: "esm", | ||
syntax: "esnext", | ||
bundle: false, | ||
dts: true | ||
}], | ||
source: { | ||
entry: { | ||
index: "./src/**" | ||
}, | ||
tsconfigPath: "./tsconfig.build.json" | ||
}, | ||
output: { | ||
target: "web", | ||
distPath: { | ||
root: "./dist" | ||
}, | ||
cleanDistPath: true, | ||
minify: false | ||
} | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,6 @@ | ||
import { defineConfig } from "@rslib/core"; | ||
import { defineBuildConfig } from "@workleap/rslib-configs"; | ||
import path from "node:path"; | ||
|
||
export default defineConfig({ | ||
lib: [{ | ||
format: "esm", | ||
syntax: "esnext", | ||
bundle: false, | ||
dts: true | ||
}], | ||
source: { | ||
entry: { | ||
index: "./src/**" | ||
}, | ||
tsconfigPath: "./tsconfig.build.json" | ||
}, | ||
output: { | ||
target: "web", | ||
distPath: { | ||
root: "./dist" | ||
}, | ||
cleanDistPath: true, | ||
minify: false | ||
} | ||
export default defineBuildConfig({ | ||
tsconfigPath: path.resolve("./tsconfig.build.json") | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,6 @@ | ||
import { defineConfig } from "@rslib/core"; | ||
import { defineBuildConfig } from "@workleap/rslib-configs"; | ||
import path from "node:path"; | ||
|
||
export default defineConfig({ | ||
lib: [{ | ||
format: "esm", | ||
syntax: "esnext", | ||
bundle: false, | ||
dts: true | ||
}], | ||
source: { | ||
entry: { | ||
index: "./src/**" | ||
}, | ||
tsconfigPath: "./tsconfig.build.json" | ||
}, | ||
output: { | ||
target: "node", | ||
distPath: { | ||
root: "./dist" | ||
}, | ||
cleanDistPath: true, | ||
minify: false | ||
} | ||
export default defineBuildConfig({ | ||
tsconfigPath: path.resolve("./tsconfig.build.json") | ||
}); |
Oops, something went wrong.