@unsetsoft/ryunixjs 0.2.31-nightly.10 → 0.2.31-nightly.12
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/bin/compiler.js +1 -1
- package/bin/serve.js +1 -1
- package/package.json +1 -1
- package/webpack.config.js +1 -1
package/bin/compiler.js
CHANGED
package/bin/serve.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import Webpack from "webpack";
|
|
2
2
|
import WebpackDevServer from "webpack-dev-server";
|
|
3
|
-
import
|
|
3
|
+
import webpackConfig from "../webpack.config.js";
|
|
4
4
|
|
|
5
5
|
const StartServer = async (cliSettings) => {
|
|
6
6
|
const compiler = Webpack(webpackConfig);
|
package/package.json
CHANGED
package/webpack.config.js
CHANGED
|
@@ -16,7 +16,7 @@ if (manager === "yarn" || manager === "npm" || manager === "bun") {
|
|
|
16
16
|
throw new Error(`The manager ${manager} is not supported.`);
|
|
17
17
|
}
|
|
18
18
|
|
|
19
|
-
|
|
19
|
+
export default {
|
|
20
20
|
mode: "production",
|
|
21
21
|
entry: join(dir, "src", "main.ryx"),
|
|
22
22
|
devtool: "nosources-source-map",
|