Skip to content

Commit 784bddd

Browse files
author
AureliaEffect
committed
Merge branch 'develop'
2 parents 76e97b3 + c9e3a20 commit 784bddd

19 files changed

+1949
-13175
lines changed

.circleci/config.yml

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
version: 2.1
2+
3+
map-1: &filter_only_develop
4+
filters:
5+
branches:
6+
only: develop
7+
8+
map-2: &filter_only_tag
9+
filters:
10+
branches:
11+
ignore: /.*/
12+
tags:
13+
only: /^v?[0-9]+(\.[0-9]+)*$/
14+
15+
orbs:
16+
v1: aurelia/v1@volatile
17+
18+
workflows:
19+
main:
20+
jobs:
21+
- v1/build_test
22+
- v1/build_merge:
23+
<<: *filter_only_develop
24+
requires:
25+
- v1/build_test
26+
- v1/npm_publish:
27+
<<: *filter_only_tag
28+
name: npm_publish_dry
29+
args: "--dry-run"
30+
- request_publish_latest:
31+
<<: *filter_only_tag
32+
type: approval
33+
requires:
34+
- npm_publish_dry
35+
- v1/npm_publish:
36+
<<: *filter_only_tag
37+
name: npm_publish
38+
context: Aurelia
39+
requires:
40+
- request_publish_latest
41+
- v1/merge_back:
42+
<<: *filter_only_tag
43+
requires:
44+
- npm_publish
45+

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,4 @@ npm-debug.log*
99
.rollupcache
1010
dist/doc-temp
1111
dist/test
12+
dist

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "aurelia-validation",
3-
"version": "1.3.3",
3+
"version": "1.4.0",
44
"description": "Validation for Aurelia applications",
55
"keywords": [
66
"aurelia",

circle.yml

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

0 commit comments

Comments
 (0)