Comparing version 0.7.0 to 0.8.0
@@ -11,4 +11,10 @@ { | ||
], | ||
"version": "0.7.0", | ||
"version": "0.8.0", | ||
"license": "MIT", | ||
"files": [ | ||
"dist", | ||
"src" | ||
], | ||
"main": "dist/bukk.js", | ||
"module": "src/bukk.js", | ||
"repository": "christianhg/bukk", | ||
@@ -20,2 +26,3 @@ "author": { | ||
"scripts": { | ||
"build": "rm -rf dist && standard && ava && webpack", | ||
"lint": "standard", | ||
@@ -28,6 +35,15 @@ "test": "standard && ava", | ||
}, | ||
"standard": { | ||
"ignore": [ | ||
"dist" | ||
] | ||
}, | ||
"devDependencies": { | ||
"ava": "^0.17.0", | ||
"standard": "^8.6.0" | ||
"babel-core": "^6.22.1", | ||
"babel-loader": "^6.2.10", | ||
"babel-preset-es2015": "^6.22.0", | ||
"standard": "^8.6.0", | ||
"webpack": "beta" | ||
} | ||
} |
@@ -15,6 +15,6 @@ # bukk 🐐 | ||
- **Predictable behaviors**<br> | ||
*`B.map(B.add(1), 1)` should return `2`. Not `[]`, `[undefined]` or `[2]`. Just `2`.* | ||
*`B.map(B.inc, 1)` should return `2`. Not `[]`, `[undefined]` or `[2]`. Just `2`.* | ||
- **ES6 compliant**<br> | ||
*It is totally fine to do `B.map(B.add(1), new Set([1, 2, 3]))`. This will simply return `Set {2, 3, 4}`.* | ||
*It is totally fine to do `B.map(B.inc, new Set([1, 2, 3]))`. This will simply return `Set {2, 3, 4}`.* | ||
@@ -27,4 +27,3 @@ - **Feature-rich**<br> | ||
```js | ||
const inc = B.add(1) | ||
const incList = B.map(inc) | ||
const incList = B.map(B.inc) | ||
@@ -61,2 +60,8 @@ incList([1, 2, 3]) | ||
Or add the `B` variable to global scope: | ||
```html | ||
<script src="nodule_modules/bukk/dist/bukk.js"></script> | ||
``` | ||
## Development | ||
@@ -63,0 +68,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
89
28751
6
39
325
1