corifeus-builder 2024.4.127 → 2024.4.131

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/LICENSE CHANGED
@@ -16,12 +16,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
16
  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
17
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
18
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19
- SOFTWARE.
20
-
21
- @license corifeus-builder v2024.4.126
22
-
23
- 🏗️ Corifeus Builder
24
-
25
- https://corifeus.com/corifeus-builder
26
-
27
- Copyright (c) 2024 Patrik Laszlo / P3X / Corifeus and contributors.
19
+ SOFTWARE.
package/README.md CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
 
7
7
  ---
8
- # 🏗️ Corifeus Builder v2024.4.127
8
+ # 🏗️ Corifeus Builder v2024.4.131
9
9
 
10
10
 
11
11
 
@@ -123,7 +123,7 @@ All my domains ([patrikx3.com](https://patrikx3.com) and [corifeus.com](https://
123
123
 
124
124
  ---
125
125
 
126
- [**CORIFEUS-BUILDER**](https://corifeus.com/corifeus-builder) Build v2024.4.127
126
+ [**CORIFEUS-BUILDER**](https://corifeus.com/corifeus-builder) Build v2024.4.131
127
127
 
128
128
  [![NPM](https://img.shields.io/npm/v/corifeus-builder.svg)](https://www.npmjs.com/package/corifeus-builder) [![Donate for Corifeus / P3X](https://img.shields.io/badge/Donate-Corifeus-003087.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=QZVM4V6HVZJW6) [![Contact Corifeus / P3X](https://img.shields.io/badge/Contact-P3X-ff9900.svg)](https://www.patrikx3.com/en/front/contact) [![Like Corifeus @ Facebook](https://img.shields.io/badge/LIKE-Corifeus-3b5998.svg)](https://www.facebook.com/corifeus.software)
129
129
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "corifeus-builder",
3
- "version": "2024.4.127",
3
+ "version": "2024.4.131",
4
4
  "corifeus": {
5
5
  "icon": "fas fa-gavel",
6
6
  "code": "Make",
@@ -33,7 +33,7 @@
33
33
  },
34
34
  "homepage": "https://corifeus.com/corifeus-builder",
35
35
  "dependencies": {
36
- "corifeus-utils": "^2024.4.115",
36
+ "corifeus-utils": "^2024.4.118",
37
37
  "download": "^8.0.0",
38
38
  "extract-zip": "^2.0.1",
39
39
  "fs-extra": "^11.2.0",
@@ -82,7 +82,7 @@ const injectorRelativePathGenerator = (options) => {
82
82
 
83
83
  const license = () => {
84
84
 
85
- const pkg = JSON.parse(fs.readFileSync(`${process.cwd()}/package.json`, 'utf8').toString());
85
+ //const pkg = JSON.parse(fs.readFileSync(`${process.cwd()}/package.json`, 'utf8').toString());
86
86
 
87
87
  const license =
88
88
  `MIT License
@@ -103,8 +103,9 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
103
103
  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
104
104
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
105
105
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
106
- SOFTWARE.
106
+ SOFTWARE.`
107
107
 
108
+ /*
108
109
  @license ${pkg.name} v${pkg.version}
109
110
 
110
111
  ${pkg.description}
@@ -113,6 +114,8 @@ ${pkg.homepage}
113
114
 
114
115
  Copyright (c) ${new Date().getFullYear()} Patrik Laszlo / P3X / Corifeus and contributors.
115
116
  `;
117
+ */
118
+
116
119
  return license
117
120
  }
118
121