es6-fuzz 3.0.6 → 3.0.7
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/.jscsrc +0 -1
- package/docs/CHANGELOG.md +10 -20
- package/package.json +5 -24
package/.jscsrc
CHANGED
|
@@ -14,7 +14,6 @@
|
|
|
14
14
|
"disallowEmptyBlocks": true,
|
|
15
15
|
"disallowSpacesInsideParentheses": true,
|
|
16
16
|
"disallowSpaceAfterObjectKeys": true,
|
|
17
|
-
"requireSpaceAfterBinaryOperators": true,
|
|
18
17
|
"disallowSpaceBeforePostfixUnaryOperators": ["++", "--"],
|
|
19
18
|
"requireSpaceBeforeBinaryOperators": [
|
|
20
19
|
"=",
|
package/docs/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
|
+
2022-06-11
|
|
2
|
+
==========
|
|
3
|
+
|
|
4
|
+
* 3.0.7
|
|
5
|
+
* fix: revert dep change
|
|
6
|
+
* refactor: make dependencies lighter
|
|
7
|
+
* (churn): changelog
|
|
8
|
+
|
|
1
9
|
2022-06-02
|
|
2
10
|
==========
|
|
3
11
|
|
|
12
|
+
* 3.0.6
|
|
13
|
+
* (churn): changelog
|
|
4
14
|
* feature: chehck if init was called before any logic os performed
|
|
5
15
|
* test: add another example to the tests
|
|
6
16
|
* chore: remove travis config
|
|
@@ -134,23 +144,3 @@
|
|
|
134
144
|
* Ghpages
|
|
135
145
|
* 2.5.5
|
|
136
146
|
* Autorelease
|
|
137
|
-
|
|
138
|
-
2017-01-27
|
|
139
|
-
==========
|
|
140
|
-
|
|
141
|
-
* (churn): changelog
|
|
142
|
-
* 2.5.4
|
|
143
|
-
* Merge branch 'master' of github.com:sebs/es6-fuzz
|
|
144
|
-
* Merge pull request [#64](https://github.com/sebs/es6-fuzz/issues/64) from sebs/greenkeeper-browserify-14.0.0
|
|
145
|
-
Update browserify to version 14.0.0 🚀
|
|
146
|
-
|
|
147
|
-
2017-01-25
|
|
148
|
-
==========
|
|
149
|
-
|
|
150
|
-
* chore(package): update browserify to version 14.0.0
|
|
151
|
-
https://greenkeeper.io/
|
|
152
|
-
|
|
153
|
-
2017-01-09
|
|
154
|
-
==========
|
|
155
|
-
|
|
156
|
-
* (churn): changelog
|
package/package.json
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "es6-fuzz",
|
|
3
3
|
"description": "fuzzy logic with and for es6",
|
|
4
|
-
"version": "3.0.
|
|
4
|
+
"version": "3.0.7",
|
|
5
5
|
"main": "lib/logic.js",
|
|
6
6
|
"repository": "git@github.com:sebs/es6-fuzz.git",
|
|
7
7
|
"homepage": "https://github.com/sebs/es6-fuzz",
|
|
8
8
|
"scripts": {
|
|
9
|
-
"
|
|
10
|
-
"
|
|
11
|
-
"test": "mocha -r blanket",
|
|
9
|
+
"changelog": "rm ./docs/CHANGELOG.md && npx changelog https://github.com/sebs/es6-fuzz all > ./docs/CHANGELOG.md && git add . && git commit . -m '(churn): changelog'",
|
|
10
|
+
"test": "npx mocha",
|
|
12
11
|
"test:watch": "npm test -- -w",
|
|
13
12
|
"addpush": "git add . && git commit . -m 'docs'",
|
|
14
13
|
"pages": "node ./scripts/publish-gh.js",
|
|
@@ -23,32 +22,14 @@
|
|
|
23
22
|
"javascript",
|
|
24
23
|
"es6"
|
|
25
24
|
],
|
|
26
|
-
"config": {
|
|
27
|
-
"blanket": {
|
|
28
|
-
"pattern": "lib/*",
|
|
29
|
-
"data-cover-never": [
|
|
30
|
-
"node_modules",
|
|
31
|
-
"tests"
|
|
32
|
-
]
|
|
33
|
-
}
|
|
34
|
-
},
|
|
35
25
|
"author": "Sebastian Schürmann",
|
|
36
26
|
"license": "MIT",
|
|
37
27
|
"devDependencies": {
|
|
38
|
-
"browserify": "17.0.0",
|
|
39
|
-
"changelog": "1.4.2",
|
|
40
|
-
"documentation": "13.2.5",
|
|
41
|
-
"es6ify": "1.6.0",
|
|
42
|
-
"eslint": "8.16.0",
|
|
43
28
|
"gh-pages": "4.0.0",
|
|
44
29
|
"ink-docstrap": "1.3.2",
|
|
45
|
-
"
|
|
46
|
-
"jsdoc": "3.6.10",
|
|
47
|
-
"mocha": "10.0.0",
|
|
48
|
-
"mocha-traceur": "2.1.0",
|
|
49
|
-
"traceur": "0.0.111"
|
|
30
|
+
"jsdoc": "3.6.10"
|
|
50
31
|
},
|
|
51
32
|
"dependencies": {
|
|
52
|
-
"
|
|
33
|
+
"boon-js": "2.0.3"
|
|
53
34
|
}
|
|
54
35
|
}
|