jedison 0.1.1 → 0.2.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/CHANGELOG.md CHANGED
@@ -0,0 +1,4 @@
1
+ ### 0.1.2
2
+
3
+ - Added option `'constraints'` to add custom constraints (validators)
4
+ - Added type property to error messages `'error'` | `'warning'`
package/README.md CHANGED
@@ -109,6 +109,24 @@ Check Out the [PLAYGROUND](https://germanbisurgi.github.io/jedison/index.html?th
109
109
 
110
110
  ## Getting Started
111
111
 
112
+ ## Install
113
+
114
+ ### Package manager
115
+
116
+ ```bash
117
+ npm install jedison
118
+ ```
119
+
120
+ ```bash
121
+ yarn add jedison
122
+ ```
123
+
124
+ ### CDN
125
+
126
+ ```html
127
+ <script src="https://cdn.jsdelivr.net/npm/jedison@0.1.1/dist/umd/jedison.umd.js"></script>
128
+ ```
129
+
112
130
  ### As a Validator
113
131
 
114
132
  ```javascript
@@ -133,7 +151,6 @@ init()
133
151
  ### As an Editor
134
152
 
135
153
  ```html
136
-
137
154
  <div id="jedison-container"></div>
138
155
  ```
139
156