Skip to content

Commit 19d47e2

Browse files
committed
1.4.0
1 parent d90f0fa commit 19d47e2

26 files changed

Lines changed: 3919 additions & 2397 deletions

.eslintignore

Lines changed: 84 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,85 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
8+
# Runtime data
9+
pids
10+
*.pid
11+
*.seed
12+
*.pid.lock
13+
14+
# Directory for instrumented libs generated by jscoverage/JSCover
15+
lib-cov
16+
17+
# Coverage directory used by tools like istanbul
18+
coverage
19+
20+
# Bower dependency directory (https://bower.io/)
21+
bower_components
22+
23+
# Compiled binary addons (https://nodejs.org/api/addons.html)
24+
build/Release
25+
26+
# Dependency directories
27+
node_modules/
28+
jspm_packages/
29+
30+
# TypeScript v1 declaration files
31+
typings/
32+
133
# Ignoring the docs folder
2-
docs/
34+
docs/
35+
36+
# Optional npm cache directory
37+
.npm
38+
39+
# Optional eslint cache
40+
.eslintcache
41+
42+
# Optional REPL history
43+
.node_repl_history
44+
45+
# Output of 'npm pack'
46+
*.tgz
47+
48+
# Yarn Integrity file
49+
.yarn-integrity
50+
51+
# dotenv environment variables file
52+
.env
53+
54+
# parcel-bundler cache (https://parceljs.org/)
55+
.cache
56+
57+
# next.js build output
58+
.next
59+
60+
# nuxt.js build output
61+
.nuxt
62+
63+
# nyc test coverage
64+
.nyc_output
65+
66+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
67+
.grunt
68+
69+
# node-waf configuration
70+
.lock-wscript
71+
72+
# vuepress build output
73+
.vuepress/dist
74+
75+
# Serverless directories
76+
.serverless
77+
78+
# FuseBox cache
79+
.fusebox/
80+
81+
# Ignoring GitHub folder
82+
.github/ISSUE_TEMPLATE
83+
84+
# Ignoring vscode
85+
.vscode/

.eslintrc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{
22
"env": {
3-
"commonjs": true,
43
"node": true,
54
"es6": true
65
},
@@ -17,6 +16,7 @@
1716
"object-curly-spacing": ["error", "always"],
1817
"no-console": "off",
1918
"camelcase": ["error", {"properties": "never"}],
19+
"no-var": "error",
2020
"indent": ["error", 2],
2121
"quotes": ["error", "single"],
2222
"semi": ["error", "always"]

.gitignore

Lines changed: 17 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,9 @@ lib-cov
1717
# Coverage directory used by tools like istanbul
1818
coverage
1919

20-
# nyc test coverage
21-
.nyc_output
22-
23-
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
24-
.grunt
25-
2620
# Bower dependency directory (https://bower.io/)
2721
bower_components
2822

29-
# node-waf configuration
30-
.lock-wscript
31-
3223
# Compiled binary addons (https://nodejs.org/api/addons.html)
3324
build/Release
3425

@@ -39,6 +30,9 @@ jspm_packages/
3930
# TypeScript v1 declaration files
4031
typings/
4132

33+
# Ignoring the docs folder
34+
docs/
35+
4236
# Optional npm cache directory
4337
.npm
4438

@@ -66,6 +60,15 @@ typings/
6660
# nuxt.js build output
6761
.nuxt
6862

63+
# nyc test coverage
64+
.nyc_output
65+
66+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
67+
.grunt
68+
69+
# node-waf configuration
70+
.lock-wscript
71+
6972
# vuepress build output
7073
.vuepress/dist
7174

@@ -75,5 +78,8 @@ typings/
7578
# FuseBox cache
7679
.fusebox/
7780

78-
# Ignoring the docs folder
79-
docs/
81+
# Ignoring GitHub folder
82+
.github/ISSUE_TEMPLATE
83+
84+
# Ignoring vscode
85+
.vscode/

.travis.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
language: node_js
22
node_js:
3-
- 7.6
43
- 8
54
- 10
6-
after_success: nyc report --reporter=text-lcov | node_modules/.bin/coveralls
5+
- 12
6+
before_script:
7+
- "curl -H 'Cache-Control: no-cache' https://raw.githubusercontent.com/fossas/fossa-cli/master/install.sh | sudo bash"
8+
script:
9+
- npm test
10+
- fossa init
11+
- fossa analyze
12+
after_success: fossa test && nyc report --reporter=text-lcov | node_modules/.bin/coveralls

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@
44
* [[`v1.1`](https://github.com/BlackB1RD-Development/tools-kit/tree/v1.1)] - [version] 1.1
55
* [[`v1.2`](https://github.com/BlackB1RD-Development/tools-kit/tree/v1.2)] - [version] 1.2
66
* [[`v1.3`](https://github.com/BlackB1RD-Development/tools-kit/tree/v1.3)] - [version] 1.3
7+
* [[`v1.4`](https://github.com/BlackB1RD-Development/tools-kit/tree/v1.4)] - [version] 1.4

CONTRIBUTING.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<h1 align="center">
2+
<a href="https://tools-kit.js.org/">
3+
<img width="500" src="src/logo.png" alt="Tools-Kit Logo">
4+
</a>
5+
</h1>
6+
7+
# CONTRIBUTING
8+
9+
## Before creating your pull request, make sure that it meets the following
10+
11+
- Make sure that your code isn't breaking any other method of the package.
12+
- Make sure to write your code with ES6 (aka ECMAScript 6, ECMAScript 2015) syntax.
13+
- Make sure that your request will work with the node version supplied in `package.json` file.
14+
15+
**NOTE**: *When creating your pull request, ensure that you are merging your forked and edited `master` branch into the base repository `master` branch.*

LICENSE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
MIT License
1+
# MIT License
22

33
Copyright (c) 2019 BlackB1RD-Development
44

@@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1818
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1919
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2020
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21-
SOFTWARE.
21+
SOFTWARE.

PULL_REQUEST_TEMPLATE.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
**Is your pull request related to a problem? Please describe.**
2+
A clear and concise description of what the problem is and how your request is fixing it.
3+
4+
**Describe alternatives you've considered**
5+
A clear and concise description of any alternative solutions or features you've considered.
6+
7+
**Additional context**
8+
Add any other context or screenshots about the pull request here.

0 commit comments

Comments
 (0)