@unsetsoft/ryunixjs 0.2.31-nightly.21 → 0.2.31-nightly.23
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.
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
#! /usr/bin/env node
|
|
2
2
|
import yargs from "yargs";
|
|
3
3
|
import { hideBin } from "yargs/helpers";
|
|
4
|
-
import { StartServer } from "./serve.
|
|
5
|
-
import { compiler } from "./compiler.
|
|
4
|
+
import { StartServer } from "./serve.mjs";
|
|
5
|
+
import { compiler } from "./compiler.mjs";
|
|
6
6
|
import logger from "terminal-log";
|
|
7
7
|
const serv = {
|
|
8
8
|
command: "server",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import Webpack from "webpack";
|
|
2
2
|
import WebpackDevServer from "webpack-dev-server";
|
|
3
|
-
import webpackConfig from "../webpack.config.
|
|
3
|
+
import webpackConfig from "../webpack.config.mjs";
|
|
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.
|
|
3
|
+
"version": "0.2.31-nightly.23",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "./dist/Ryunix.js",
|
|
6
6
|
"private": false,
|
|
@@ -12,12 +12,12 @@
|
|
|
12
12
|
"build": "rollup ./src/main.js --file ./dist/Ryunix.js --format umd --name Ryunix",
|
|
13
13
|
"prepublish": "npm run build",
|
|
14
14
|
"postinstall": "npm run build",
|
|
15
|
-
"cli": "node ./bin/index.
|
|
15
|
+
"cli": "node ./bin/index.mjs",
|
|
16
16
|
"nightly:release": "npm publish --tag nightly",
|
|
17
17
|
"release": "npm publish"
|
|
18
18
|
},
|
|
19
19
|
"bin": {
|
|
20
|
-
"ryunix": "./bin/index.
|
|
20
|
+
"ryunix": "./bin/index.mjs"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@babel/cli": "7.19.3",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { fileURLToPath } from "url";
|
|
2
2
|
import { dirname, join, resolve } from "path";
|
|
3
3
|
import HtmlWebpackPlugin from "html-webpack-plugin";
|
|
4
|
-
import { getPackageManager } from "./utils/index.
|
|
4
|
+
import { getPackageManager } from "./utils/index.mjs";
|
|
5
5
|
import RemarkHTML from "remark-html";
|
|
6
6
|
|
|
7
7
|
const __filename = fileURLToPath(import.meta.url);
|
|
File without changes
|