@unsetsoft/ryunixjs 0.2.24 → 0.2.26-nightly.0

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/README.md CHANGED
@@ -9,21 +9,7 @@ Is a ReactJS Clone! Even lighter, however, at a very early stage for production
9
9
 
10
10
  ## Usage
11
11
 
12
- `npx @unsetsoft/create-ryunix-app@latest get`
13
-
14
- ### Rename your final folder
15
-
16
- `npx @unsetsoft/create-ryunix-app@latest get --dirname awasome-ryunix-app`
17
-
18
- ### Templates
19
-
20
- `npx @unsetsoft/create-ryunix-app@latest get --template ryunix-jsx`
21
-
22
- Supported templates [ryunix-js|ryunix-jsx|ryunix-ryx]
23
-
24
- ### Branch (Not recomended and only works with create-ryunix-app 1.0.1)
25
-
26
- `npx @unsetsoft/create-ryunix-app@latest get --branch <github branch>`
12
+ `npx @unsetsoft/cra@latest`
27
13
 
28
14
  ## Bugs?
29
15
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@unsetsoft/ryunixjs",
3
- "version": "0.2.24",
3
+ "version": "0.2.26-nightly.0",
4
4
  "license": "MIT",
5
5
  "main": "./dist/Ryunix.js",
6
6
  "private": false,
@@ -11,7 +11,9 @@
11
11
  "scripts": {
12
12
  "build": "rollup ./lib/main.js --file ./dist/Ryunix.js --format umd --name Ryunix",
13
13
  "postinstall": "npm run build",
14
- "cli": "node ./bin/index.js"
14
+ "cli": "node ./bin/index.js",
15
+ "nightly:release": "npm publish --tag nightly",
16
+ "release": "npm publish"
15
17
  },
16
18
  "bin": {
17
19
  "ryunix": "./bin/index.js"
@@ -24,6 +26,7 @@
24
26
  "@babel/polyfill": "7.12.1",
25
27
  "@babel/preset-env": "^7.22.14",
26
28
  "@babel/preset-react": "^7.22.5",
29
+ "@mdx-js/loader": "^2.3.0",
27
30
  "babel-loader": "^9.1.3",
28
31
  "css-loader": "^6.8.1",
29
32
  "error-overlay-webpack-plugin": "^1.1.1",
@@ -44,5 +47,8 @@
44
47
  },
45
48
  "engines": {
46
49
  "node": ">=18.16.0"
47
- }
50
+ },
51
+ "keywords": [
52
+ "ryunixjs"
53
+ ]
48
54
  }
package/webpack.config.js CHANGED
@@ -41,7 +41,7 @@ module.exports = {
41
41
  module: {
42
42
  rules: [
43
43
  {
44
- test: /\.(js|jsx|ts|tsx|ryx)$/,
44
+ test: /\.(js|jsx|ts|tsx|ryx|)$/,
45
45
  exclude: /node_modules/,
46
46
  use: {
47
47
  loader: "babel-loader",
@@ -71,6 +71,10 @@ module.exports = {
71
71
  loader: "url-loader",
72
72
  options: { limit: false },
73
73
  },
74
+ {
75
+ test: /\.mdx$/,
76
+ use: ["@mdx-js/loader"],
77
+ },
74
78
  ],
75
79
  },
76
80
  resolve: {