Skip to content

Commit b94e31a

Browse files
committed
Merge branch 'master' into greenkeeper/initial
2 parents 079e4f6 + b1a57d4 commit b94e31a

21 files changed

+10901
-7407
lines changed

.babelrc

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

.circleci/commit-lockfile.sh

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
#!/bin/bash
2+
3+
PROJECT_LOCKFILE=${PROJECT_LOCKFILE:-"package-lock.json"}
4+
GITHUB_EMAIL=${GITHUB_EMAIL:-"task-runner@circleci"}
5+
GITHUB_NAME=${GITHUB_NAME:-"Circle CI<$GITHUB_EMAIL>"}
6+
7+
if [[ $CIRCLE_BRANCH != *"greenkeeper"* ]]; then
8+
exit 0
9+
fi
10+
11+
if ! git diff-index --quiet HEAD $PROJECT_LOCKFILE --; then
12+
git config user.email $GITHUB_EMAIL
13+
git config user.name $GITHUB_NAME
14+
15+
git add $PROJECT_LOCKFILE
16+
git commit -m "chore(*): update lockfile [ci skip]" -m "See: $CIRCLE_BUILD_URL"
17+
git push origin $CIRCLE_BRANCH
18+
fi

.circleci/config.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# Javascript Node CircleCI 2.0 configuration file
2+
#
3+
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
4+
#
5+
version: 2
6+
jobs:
7+
build:
8+
docker:
9+
# https://circleci.com/docs/2.0/circleci-images/
10+
- image: circleci/node:9-browsers
11+
12+
steps:
13+
- checkout
14+
15+
- restore_cache:
16+
keys:
17+
- dependencies-{{ checksum "package.json" }}
18+
- dependencies-
19+
20+
- run:
21+
name: Install dependencies
22+
command: npm i
23+
24+
- save_cache:
25+
paths:
26+
- node_modules
27+
key: dependencies-{{ checksum "package.json" }}
28+
29+
- run:
30+
name: Executing tests
31+
command: npm test
32+
33+
- run:
34+
name: Update Lockfile
35+
command: .circleci/commit-lockfile.sh
36+
37+

README.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
## angularjs-input-birthday
1+
2+
# angularjs-input-birthday
3+
4+
[![CircleCI][badge-circleci-img]][badge-circleci-lnk]
25

36
[![Greenkeeper badge](https://badges.greenkeeper.io/heyprof/angularjs-input-birthday.svg)](https://greenkeeper.io/)
47

@@ -63,4 +66,9 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
6366
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
6467
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
6568
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
66-
SOFTWARE.
69+
SOFTWARE.
70+
71+
[site]: https://heyprof.github.io/angularjs-input-birthday/
72+
73+
[badge-circleci-img]: https://circleci.com/gh/heyprof/angularjs-input-birthday/tree/master.svg?style=svg
74+
[badge-circleci-lnk]: https://circleci.com/gh/heyprof/angularjs-input-birthday/tree/master

bower.json

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

0 commit comments

Comments
 (0)