hermes-io 2.2.17 → 2.2.18
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/README2.md +8 -0
- package/package.json +2 -2
- package/. quokka +0 -24
- package/.swcrc +0 -25
package/README2.md
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# hermes-io ⚡
|
|
2
|
+
A lightweight javascript library that allows communication between components by using the observer pattern and the hook api.
|
|
3
|
+
|
|
4
|
+

|
|
5
|
+
|
|
6
|
+
## Documentation:
|
|
7
|
+
|
|
8
|
+
https://github.com/Maxtermax/hermes-io#readme
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hermes-io",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.18",
|
|
4
4
|
"description": "A lightweight javascript library that allows communication between Reactjs components by using the observer pattern and the hook api",
|
|
5
5
|
"main": "./lib/index.js",
|
|
6
6
|
"module": "lib/index.js",
|
|
7
7
|
"scripts": {
|
|
8
8
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
9
|
-
"prepare": "swc ./src -d ./lib"
|
|
9
|
+
"prepare": "swc ./src -d ./lib && touch README2.md && echo '# hermes-io ⚡ \n A lightweight javascript library that allows communication between components by using the observer pattern and the hook api. \n\n  \n\n ## Documentation: \n\n https://github.com/Maxtermax/hermes-io#readme' > ./README2.md"
|
|
10
10
|
},
|
|
11
11
|
"exports": {
|
|
12
12
|
".": {
|
package/. quokka
DELETED
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"babel": {
|
|
3
|
-
"presets": [
|
|
4
|
-
"react-app"
|
|
5
|
-
]
|
|
6
|
-
},
|
|
7
|
-
"plugins": [
|
|
8
|
-
"alias-quokka-plugin",
|
|
9
|
-
"jsdom-quokka-plugin"
|
|
10
|
-
],
|
|
11
|
-
"alias": {
|
|
12
|
-
"@core": "./src/core",
|
|
13
|
-
"@contexts": "./src/core/contexts",
|
|
14
|
-
"@factory": "./src/core/factory",
|
|
15
|
-
"@hooks": "./src/core/hooks",
|
|
16
|
-
"@utils": "./src/core/utils",
|
|
17
|
-
"@libs": "./src/libs",
|
|
18
|
-
"@constants": "./src/core/constants",
|
|
19
|
-
"@translations": "./src/core/translations",
|
|
20
|
-
"@theme": "./src/core/theme",
|
|
21
|
-
"@routes": "./src/core/routes"
|
|
22
|
-
},
|
|
23
|
-
"node": "~/.nvm/versions/node/v16.18.1/bin/node"
|
|
24
|
-
}
|
package/.swcrc
DELETED
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "https://json.schemastore.org/swcrc",
|
|
3
|
-
"jsc": {
|
|
4
|
-
"parser": {
|
|
5
|
-
"syntax": "ecmascript",
|
|
6
|
-
"jsx": false,
|
|
7
|
-
"dynamicImport": false,
|
|
8
|
-
"privateMethod": false,
|
|
9
|
-
"functionBind": false,
|
|
10
|
-
"exportDefaultFrom": false,
|
|
11
|
-
"exportNamespaceFrom": false,
|
|
12
|
-
"decorators": false,
|
|
13
|
-
"decoratorsBeforeExport": false,
|
|
14
|
-
"topLevelAwait": false,
|
|
15
|
-
"importMeta": false
|
|
16
|
-
},
|
|
17
|
-
"transform": null,
|
|
18
|
-
"target": "esnext",
|
|
19
|
-
"loose": true,
|
|
20
|
-
"externalHelpers": false,
|
|
21
|
-
// Requires v1.2.50 or upper and requires target to be es2016 or upper.
|
|
22
|
-
"keepClassNames": false
|
|
23
|
-
},
|
|
24
|
-
"minify": true
|
|
25
|
-
}
|