plug-code 1.1.15 → 1.1.16
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 +14 -17
- package/README.md +3 -4
- package/package.json +1 -1
package/LICENSE
CHANGED
|
@@ -1,21 +1,18 @@
|
|
|
1
|
-
|
|
1
|
+
Plug&Code License
|
|
2
2
|
|
|
3
|
-
Copyright (c)
|
|
3
|
+
Copyright (c) 2026 [TU NOMBRE]
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
5
|
+
All rights reserved.
|
|
11
6
|
|
|
12
|
-
|
|
13
|
-
|
|
7
|
+
Permission is hereby granted to use this software for personal and commercial projects.
|
|
8
|
+
You may modify the software for your own internal use.
|
|
14
9
|
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
10
|
+
You may NOT:
|
|
11
|
+
- Redistribute this software or any modified version of it.
|
|
12
|
+
- Sell, sublicense, publish, or share this software.
|
|
13
|
+
- Use this software as the basis for another framework, library, or competing product.
|
|
14
|
+
|
|
15
|
+
This software is provided "as is", without warranty of any kind, express or implied,
|
|
16
|
+
including but not limited to the warranties of merchantability, fitness for a
|
|
17
|
+
particular purpose and noninfringement. In no event shall the author be liable
|
|
18
|
+
for any claim, damages or other liability arising from the use of this software.
|
package/README.md
CHANGED
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
It empowers developers to build complex applications by **plugging in independent feature modules** without tightly coupling the codebase.
|
|
5
5
|
|
|
6
6
|
> **License**
|
|
7
|
-
>
|
|
8
|
-
>
|
|
7
|
+
> This project is licensed under the Plug&Code License.
|
|
8
|
+
> See the LICENSE file for details.
|
|
9
9
|
|
|
10
10
|
---
|
|
11
11
|
|
|
@@ -67,8 +67,7 @@ import { PaginationFeature } from './features/PaginationFeature';
|
|
|
67
67
|
import { SalesFeature } from './features/SalesFeature';
|
|
68
68
|
|
|
69
69
|
export const { useSystemPlc, SystemPlcRoot } = createPlugAndCode((api) => {
|
|
70
|
-
|
|
71
|
-
|
|
70
|
+
// It creates root automatically | root = {}
|
|
72
71
|
PaginationFeature(api);
|
|
73
72
|
SalesFeature(api);
|
|
74
73
|
});
|