Skip to content

Commit 3de8888

Browse files
author
Charlike Mike Reagent
committed
major(refactor): switch to use 'prompts' package
Now it is a pretty cool replacement of the original `git commit` command. Prompts few questions that forms a commit message compliant to the Conventional Commits spec (angular style commits). By defaul t does not prompt for scope, body and footer. Use -x (--scope), -y (--body) or -w (--footer) flags.
1 parent 15d16c2 commit 3de8888

28 files changed

+1146
-1516
lines changed

.all-contributorsrc

-24
This file was deleted.

.circleci/config.yml

+9-35
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- checkout
2121
- *restore_modules_cache
2222
- run:
23-
name: Installing Dependencies
23+
name: Installing dependencies
2424
command: yarn install
2525
- save_cache:
2626
key: gitcommit-{{ checksum "yarn.lock" }}
@@ -41,32 +41,14 @@ jobs:
4141
name: Sending test coverage to CodeCov
4242
command: bash <(curl -s https://codecov.io/bash)
4343

44-
build:
44+
release:
4545
<<: *defaults
4646
steps:
4747
- checkout
4848
- *restore_modules_cache
4949
- run:
50-
name: Creating distributable files
51-
command: echo ok
52-
- store_artifacts:
53-
path: dist
54-
destination: gitcommit
55-
56-
# TODO: uncomment when ready
57-
# publish:
58-
# <<: *defaults
59-
# steps:
60-
# - checkout
61-
# - *restore_modules_cache
62-
# - run:
63-
# name: Adding NPM auth token
64-
# command: |
65-
# # Foobie comment.
66-
# echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc
67-
# - run:
68-
# name: Releasing to NPM and GitHub
69-
# command: yarn start release
50+
name: Releasing and publishing
51+
command: yarn run release
7052

7153
workflows:
7254
version: 2
@@ -76,18 +58,10 @@ workflows:
7658
- test:
7759
requires:
7860
- install
79-
- build:
61+
- release:
8062
requires:
81-
- install
8263
- test
83-
# TODO: uncomment when ready
84-
# - publish:
85-
# filters:
86-
# branches:
87-
# only:
88-
# - master
89-
# context: org-global
90-
# requires:
91-
# - install
92-
# - test
93-
# - build
64+
filters:
65+
branches:
66+
only: master
67+
context: org-global

.editorconfig

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# http://editorconfig.org/
12
root = true
23

34
[*]

.eslintignore

-93
This file was deleted.

.eslintrc

-12
This file was deleted.

.gitattributes

-2
This file was deleted.

.gitignore

+7-2
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ dist
1111
lib-cov
1212
coverage
1313
.nyc_output
14-
nyc_output
1514
nbproject
1615
cache
1716
temp
1817
tmp
18+
gitcommit
1919

2020
# npm >=5 lock file (& shrinkwrap), we use Yarn!
2121
package-lock.json
@@ -41,7 +41,10 @@ typings/
4141
# #########################
4242
logs
4343
*.log
44-
*.log*
44+
npm-debug.log*
45+
npm-debug.log*
46+
yarn-debug.log*
47+
yarn-error.log*
4548
*.dat
4649
*.sql
4750
*.sqlite
@@ -56,6 +59,7 @@ pids
5659

5760
# Editors
5861
*.idea
62+
*.vscode
5963

6064
# Another files #
6165
# ###############
@@ -91,3 +95,4 @@ pids
9195

9296
# dotenv environment variables file
9397
.env
98+
.pem

.helarc.yml

-1
This file was deleted.

.npmrc

-5
This file was deleted.

.nycrc.json

-7
This file was deleted.

.prettierignore

-93
This file was deleted.

.prettierrc.json

-11
This file was deleted.

0 commit comments

Comments
 (0)