@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  // Can be imported from webpack package
2
2
  import webpack from "webpack";
3
- import * as webpackConfig from "../webpack.config.js";
3
+ import webpackConfig from "../webpack.config.js";
4
4
  const compiler = webpack(webpackConfig);
5
5
 
6
6
  export { compiler };
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 * as webpackConfig from "../webpack.config.js";
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@unsetsoft/ryunixjs",
3
- "version": "0.2.31-nightly.10",
3
+ "version": "0.2.31-nightly.12",
4
4
  "license": "MIT",
5
5
  "main": "./dist/Ryunix.js",
6
6
  "private": false,
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
- module.exports = {
19
+ export default {
20
20
  mode: "production",
21
21
  entry: join(dir, "src", "main.ryx"),
22
22
  devtool: "nosources-source-map",