Skip to content

Commit 1c476b2

Browse files
committed
feat(core angular): trigger minor release on Travis
trigger minor release on Travis
1 parent 2995cfa commit 1c476b2

File tree

3 files changed

+13
-12
lines changed

3 files changed

+13
-12
lines changed

Diff for: .travis/after_success.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
#!/bin/bash
22
set -e
33

4+
npm config set //registry.npmjs.org/:_authToken=$NPM_TOKEN -q
5+
46
if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then
57
echo "We are in a pull request, not releasing"
68
exit 0
@@ -41,7 +43,5 @@ if [[ $TRAVIS_BRANCH == 'master' ]]; then
4143
fi
4244

4345
if [[ echo $TRAVIS_BRANCH | grep "^v[0-9]\+\.[0-9]\+\.[0-9]\+\$" ]]; then
44-
npm config set //registry.npmjs.org/:_authToken=$NPM_TOKEN -q
45-
4646
lerna publish from-git
4747
fi

Diff for: packages/angular/demo/src/index.html

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
<!doctype html>
22
<html lang="en">
3-
<head>
4-
<meta charset="utf-8">
5-
<title>Demo</title>
6-
<base href="/">
3+
<head>
4+
<meta charset="utf-8">
5+
<title>Demo</title>
6+
<base href="/">
77

8-
<meta name="viewport" content="width=device-width, initial-scale=1">
9-
<link rel="icon" type="image/x-icon" href="favicon.ico">
10-
</head>
11-
<body>
12-
<app-root></app-root>
13-
</body>
8+
<meta name="viewport" content="width=device-width, initial-scale=1">
9+
<link rel="icon" type="image/x-icon" href="favicon.ico">
10+
</head>
11+
<body>
12+
<app-root></app-root>
13+
</body>
1414
</html>

Diff for: packages/core/custom.d.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
declare module "*.svg" {
22
const content: any;
3+
34
export default content;
45
}

0 commit comments

Comments
 (0)