Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 1ce0b88

Browse files
authoredJun 5, 2018
Merge pull request topcoder-platform#7 from liuliquan/settings-profile
Review refactor
2 parents 153548a + 40edda6 commit 1ce0b88

Some content is hidden

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

41 files changed

+15238
-4951
lines changed
 

‎.circleci/config.yml

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
1+
defaults: &defaults
2+
docker:
3+
- image: circleci/node:8.11.2
4+
15
version: 2
26
jobs:
3-
# Code testing
47
test:
5-
docker:
6-
- image: circleci/node:8.11.1
8+
<<: *defaults
79
steps:
810
- checkout
911
- restore_cache:
@@ -19,11 +21,8 @@ jobs:
1921
root: .
2022
paths:
2123
- dist
22-
23-
# NPM release
2424
release:
25-
docker:
26-
- image: circleci/node:8.11.1
25+
<<: *defaults
2726
steps:
2827
- checkout
2928
- attach_workspace:
@@ -38,12 +37,12 @@ workflows:
3837
- test:
3938
filters:
4039
tags:
41-
only: /v[0-9]+(\.[0-9]+)*/
40+
only: /.*/
4241
- release:
4342
filters:
4443
branches:
4544
ignore: /.*/
4645
tags:
4746
only: /v[0-9]+(\.[0-9]+)*/
4847
requires:
49-
- test
48+
- test

‎CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
# Topcoder React Lib
22

3+
### v0.1.0
4+
Update of dependencies.
5+
36
### v0.0.x
47
Pre-release drafts of the initial library version. A big journey starts here.

0 commit comments

Comments
 (0)
Please sign in to comment.