-
Notifications
You must be signed in to change notification settings - Fork 709
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #352 from mcasimir/pipeline-refactor
Pipeline refactor
- Loading branch information
Showing
127 changed files
with
7,763 additions
and
6,921 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# http://EditorConfig.org | ||
|
||
# top-most EditorConfig file | ||
root = true | ||
|
||
# Unix-style newlines with a newline ending every file | ||
[*] | ||
end_of_line = lf | ||
charset = utf-8 | ||
indent_style = space | ||
indent_size = 2 | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{ | ||
"preset": "google", | ||
"esnext": true, | ||
"maximumLineLength": { | ||
"value": 160, | ||
"allExcept": ["comments", "regex"] | ||
}, | ||
"excludeFiles": [ | ||
"node_modules/**", | ||
"bower_components/**", | ||
"docs/**", | ||
"out/**", | ||
"dist/**" | ||
], | ||
"jsDoc": { | ||
"checkAnnotations": { | ||
"preset": "jsdoc3", | ||
"extra": { | ||
"module": true, | ||
"position": true, | ||
"directive": true, | ||
"restrict": true, | ||
"scope": true, | ||
"as": true, | ||
"service": true, | ||
"ngdoc": true, | ||
"shortname": true, | ||
"memberOf": true | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,15 @@ | ||
{ | ||
"enforceall": true, | ||
"latedef": true, | ||
"undef": true, | ||
"unused": true, | ||
"esnext": true, | ||
"strict": true, | ||
"node": true, | ||
"browser": true, | ||
"singleGroups": false, | ||
"globals": { | ||
"angular": false, | ||
"FastClick": false, | ||
"overthrow": false | ||
} | ||
} | ||
"quotmark": "single", | ||
"unused": true, | ||
"jasmine": true, | ||
"predef": [ | ||
"angular", | ||
"module", | ||
"inject", | ||
"FastClick" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
module.exports = { | ||
developmentBranch: 'master', | ||
plugins: [ | ||
'bump-package-json', | ||
'generate-changelog', | ||
function() { | ||
require('child_process').execSync(`npm run build`); | ||
} | ||
] | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,20 @@ | ||
language: node_js | ||
node_js: | ||
- '0.11' | ||
env: | ||
global: | ||
- secure: i33p1k4Wk1JFm1kiVPGG6StjhXUTdtg6EyMlVuARS5npioNymFgl3RgkNzar6joRIdGp7Fce0Px5B6Iy1U6LZgGOneogVk9VmEBWFtheiL/O3rzujiD3DTw7WeH6vllCjV9O9GodpZ+wbHxgq1I3aNr/n37iyL3Hc3cMspW+7kg= | ||
- secure: cHXdgud0+4z21j8U82FsNj+LSRmMPNofgqg0Vroiv2a3GPcKXHzBki/1ZoTEGBDBY/UCADlD7pWRXq5JgxGxfjXGopT2/GBH5zGlXOoTyme3/PyuJgnQaAU1nXvrsxq69x9V11/mYxG/kQ0oCT0BgMFcRz6hoBdiBZYST7SdBAc= | ||
- NODE_ENV: travis | ||
|
||
- 4.4.3 | ||
sudo: required | ||
before_install: | ||
- npm install | ||
- npm install -g bower | ||
- bower install | ||
- sudo apt-get update | ||
- sudo apt-get install -o Dpkg::Options::="--force-confold" --force-yes -y docker-engine | ||
services: | ||
- docker | ||
script: | ||
- docker run --rm --privileged -w /usr/src/app -v $PWD:/usr/src/app mcasimir/dind-node-build-runner:6.2.1 bash ci.sh | ||
- node_modules/.bin/codecov | ||
deploy: | ||
provider: npm | ||
email: maurizio.cas@gmail.com | ||
api_key: | ||
secure: kaKfP4ZS8Bd/XdwJPrCDsllC3SGvMQTdEsC7LriMv5AHCxJFY6rBJ8YqgFx/Tna9TVGjr9Q0lQ6hX1V1im0I8/lT5y5dHW5Kib2WwOosCA530kkkfc/7u4zHIxrl5wzLLp2VQhBaSMherV/btD3cGIPk91M8Q5c2kc0fORx8Cc0= | ||
on: | ||
tags: true | ||
repo: mcasimir/mobile-angular-ui |
Oops, something went wrong.