Skip to content

Commit 19cce02

Browse files
Merge branch 'feature/typescript_conversion'
# Conflicts: # bin/bump.js # lib/index.js # test/specs/commit.spec.js
2 parents d89d823 + 2ed54c6 commit 19cce02

67 files changed

Lines changed: 5877 additions & 1927 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.eslintrc.yml

Lines changed: 0 additions & 11 deletions
This file was deleted.

.gitattributes

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Git attributes
2+
# https://git-scm.com/docs/gitattributes
3+
# https://git-scm.com/book/en/v2/Customizing-Git-Git-Attributes
4+
5+
# Normalize line endings for all files that git determines to be text.
6+
# https://git-scm.com/docs/gitattributes#gitattributes-Settostringvalueauto
7+
* text=auto
8+
9+
# Normalize line endings to LF on checkin, and do NOT convert to CRLF when checking-out on Windows.
10+
# https://git-scm.com/docs/gitattributes#gitattributes-Settostringvaluelf
11+
*.txt text eol=lf
12+
*.html text eol=lf
13+
*.md text eol=lf
14+
*.css text eol=lf
15+
*.scss text eol=lf
16+
*.map text eol=lf
17+
*.js text eol=lf
18+
*.jsx text eol=lf
19+
*.ts text eol=lf
20+
*.tsx text eol=lf
21+
*.json text eol=lf
22+
*.yml text eol=lf
23+
*.yaml text eol=lf
24+
*.xml text eol=lf
25+
*.svg text eol=lf

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@ pids
3535
# Dependencies
3636
node_modules
3737

38+
# Build output
39+
/lib
40+
3841
# Test output
3942
/.nyc_output
4043
/coverage

.mocharc.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Mocha options
2+
# https://mochajs.org/#configuring-mocha-nodejs
3+
# https://github.com/mochajs/mocha/blob/master/example/config/.mocharc.yml
4+
5+
spec:
6+
- test/fixtures/setup-mocks.js
7+
- test/fixtures/mocha-hooks.js
8+
- test/specs/**/*.spec.js
9+
10+
bail: true
11+
timeout: 10000
12+
slow: 2000
13+
retries: 2
14+
recursive: true

.travis.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,18 @@ language: node_js
99
node_js:
1010
- 10
1111
- 8
12-
- 6
1312

1413
os:
1514
- linux
1615
- osx
1716
- windows
1817

19-
script: npm run lint && npm run coverage
18+
before_script:
19+
- npm run lint
20+
- npm run build
21+
22+
script:
23+
- npm run coverage
2024

2125
after_success:
2226
# send code-coverage data to Coveralls

_config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ title: Version Bump Prompt
44
logo: https://jsdevtools.org/img/logos/logo.png
55

66
author:
7-
twitter: JS_DevTools
7+
twitter: JSDevTools
88

99
google_analytics: UA-68102273-3
1010

1111
twitter:
12-
username: JS_DevTools
12+
username: JSDevTools
1313
card: summary
1414

1515
defaults:

0 commit comments

Comments
 (0)