react-voodoo 2.2.4 → 2.4.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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "react-voodoo",
3
- "version": "2.2.4",
4
- "license": "MIT",
3
+ "version": "2.4.0",
4
+ "license": "(CC-BY-ND-4.0 OR AGPL-3.0-only)",
5
5
  "main": "./dist/react-voodoo.js",
6
6
  "author": "Nathan Braun <n8tz.js@gmail.com>",
7
7
  "repository": "https://github.com/react-voodoo/react-voodoo",
@@ -10,7 +10,8 @@
10
10
  "build": "lpack",
11
11
  "devLib": "lpack :staging -w",
12
12
  "test": "echo ok",
13
- "testAuto": "nodemon --watch ./dist/react-voodoo.js --watch ./etc/tests/**/*.js --exec \"npm test\""
13
+ "testAuto": "nodemon --watch ./dist/react-voodoo.js --watch ./etc/tests/**/*.js --exec \"npm test\"",
14
+ "setupLayers": "lpack-setup"
14
15
  },
15
16
  "peerDependencies": {
16
17
  "react": "^16.0.0 || ^17.0.1",
package/readme.md CHANGED
@@ -11,6 +11,11 @@ ___
11
11
  <a href="https://travis-ci.org/react-voodoo/react-voodoo">
12
12
  <img src="https://travis-ci.org/react-voodoo/react-voodoo.svg?branch=master" alt="Build Status" /></a>
13
13
  <img src="https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat" />
14
+ <br/>
15
+ <a href="http://creativecommons.org/licenses/by-nd/4.0">
16
+ <img src="https://img.shields.io/badge/License-CC%20BY--ND%204.0-lightgrey.svg" alt="License: CC BY-ND 4.0" /></a>
17
+ <a href="http://www.gnu.org/licenses/agpl-3.0">
18
+ <img src="https://img.shields.io/badge/License-AGPL%20v3-blue.svg" alt="License: AGPL v3" /></a>
14
19
  </p>
15
20
 
16
21
 
@@ -229,12 +234,10 @@ const Sample = ( {} ) => {
229
234
  }
230
235
  ```
231
236
 
232
- ## todo ?
237
+ ## License ?
233
238
 
234
- - add missing interpolator / strategy ( background, borders, ... )
235
- - Doc, tests & code cleaning
236
- - lot of various simple and/or smart optims / recycling
237
- - SVG support
239
+ Using CC BY-NC, you can use it in commercial apps, but you can't distribute modified versions.<br/>
240
+ Using AGPL, you can distribute modified versions but theses versions must be AGPL too.
238
241
 
239
242
  [![contributions welcome](https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat)](#)
240
243
  [![*](https://www.google-analytics.com/collect?v=1&tid=UA-82058889-1&cid=555&t=event&ec=project&ea=view&dp=%2Fproject%2Freact-voodoo&dt=readme)](#)
package/LICENSE.MD DELETED
@@ -1,21 +0,0 @@
1
- MIT License
2
-
3
- Copyright (c) 2020 Braun Nathanael
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
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:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.