react-obsidian 2.6.1 → 2.7.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 +11 -0
- package/package.json +11 -3
package/README.md
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# react-obsidian
|
|
2
|
+
|
|
3
|
+
A dependency injection library for React and React Native applications.
|
|
4
|
+
|
|
5
|
+
* [Introduction](https://wix-incubator.github.io/obsidian/docs/documentation/)
|
|
6
|
+
* [Installation](https://wix-incubator.github.io/obsidian/docs/documentation/installation)
|
|
7
|
+
* [Usage](#usage)
|
|
8
|
+
* [Defining dependencies](https://wix-incubator.github.io/obsidian/docs/documentation/usage/Graphs)
|
|
9
|
+
* [Injecting hooks](https://wix-incubator.github.io/obsidian/docs/documentation/usage/Hooks)
|
|
10
|
+
* [Using functional components](https://wix-incubator.github.io/obsidian/docs/documentation/usage/FunctionalComponents)
|
|
11
|
+
* [Using class](https://wix-incubator.github.io/obsidian/docs/documentation/usage/Classes)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-obsidian",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.7.0",
|
|
4
4
|
"description": "Dependency injection framework for React and React Native applications",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"prepack": "npm run lint && tsc --project tsconfig.prod.json",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"eslint-plugin-import": "^2.25.2",
|
|
48
48
|
"eslint-plugin-import-newlines": "^1.1.5",
|
|
49
49
|
"eslint-plugin-jest-formatting": "^3.1.0",
|
|
50
|
-
"eslint-plugin-obsidian": "2.
|
|
50
|
+
"eslint-plugin-obsidian": "2.7.0",
|
|
51
51
|
"eslint-plugin-react": "^7.26.1",
|
|
52
52
|
"eslint-plugin-react-hooks": "^4.2.0",
|
|
53
53
|
"eslint-plugin-unused-imports": "3.1.x",
|
|
@@ -67,11 +67,19 @@
|
|
|
67
67
|
"url": "git+https://github.com/wix-incubator/react-obsidian.git"
|
|
68
68
|
},
|
|
69
69
|
"keywords": [
|
|
70
|
+
"dependency",
|
|
71
|
+
"dependency",
|
|
70
72
|
"react",
|
|
71
73
|
"react-native",
|
|
74
|
+
"react native",
|
|
72
75
|
"dependency-injection",
|
|
76
|
+
"dependency injection",
|
|
77
|
+
"dependency inversion",
|
|
78
|
+
"inversion of control container",
|
|
73
79
|
"typescript",
|
|
74
|
-
"ioc"
|
|
80
|
+
"ioc",
|
|
81
|
+
"di",
|
|
82
|
+
"injector"
|
|
75
83
|
],
|
|
76
84
|
"contributors": [
|
|
77
85
|
{
|