Skip to content

Commit

Permalink
1.2.0
Browse files Browse the repository at this point in the history
- generate a multi line pipeline
   ─┬─install─┬─lint─┬─coverage─┬─test──docs
    |         |      |          |
    └──npm────┘      └──upload──┘
- updates dependencies
  • Loading branch information
gabrielcsapo committed Apr 27, 2019
1 parent e747d1f commit 7acb9f9
Show file tree
Hide file tree
Showing 30 changed files with 330 additions and 221 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,5 @@ script:
node_js:
- "8"
- "10"
- "11"
- "12"
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
# 1.2.0 (04/26/2019)

- generate a multi line pipeline
```
─┬─install─┬─lint─┬─coverage─┬─test──docs
| | | |
└──npm────┘ └──upload──┘
```
- updates dependencies


# 1.1.1 (11/27/2018)

- fix issue in CI where ref head is not a symbolic ref
Expand Down
6 changes: 0 additions & 6 deletions TODO.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,3 @@
- [ ] capture any changes that weren't committed to git
- [ ] document and test using build.sh as a module
- [ ] add the option to to take in a build.json file and generate a report from that
- [ ] generate a multi line pipeline
```
─┬─install─┬─lint─┬─coverage─┬─test──docs
| | | |
└──npm────┘ └──upload──┘
```
13 changes: 9 additions & 4 deletions docs/code/git.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -79,12 +79,17 @@ <h1 class="page-title">Source: git.js</h1>
git.committer_email = raw[5]
git.committer_date = raw[6]
git.message = raw[7]
git.branch = process.env.BRANCH_NAME

const { stdout: branch } = await exec('git symbolic-ref --short HEAD', {
cwd: directory
})
try {
const { stdout: branch } = await exec('git symbolic-ref --short HEAD', {
cwd: directory
})

git.branch = branch.replace('\n', '') || process.env.BRANCH_NAME
git.branch = branch.replace('\n', '') || process.env.BRANCH_NAME
} catch (ex) {
// noop
}

const { stdout: remotes } = await exec('git remote -v', {
cwd: directory
Expand Down
17 changes: 9 additions & 8 deletions docs/example/index.html

Large diffs are not rendered by default.

17 changes: 9 additions & 8 deletions docs/index.html

Large diffs are not rendered by default.

13 changes: 7 additions & 6 deletions docs/storybook/iframe.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!doctype html><html><head><meta charset="utf-8"><title>Storybook</title><base target="_parent"><style>:not(.sb-show-main) > .sb-main,
<!doctype html><html><head><meta charset="utf-8"><title>Storybook</title><meta name="viewport" content="width=device-width,initial-scale=1"><base target="_parent"><style>:not(.sb-show-main) > .sb-main,
:not(.sb-show-nopreview) > .sb-nopreview,
:not(.sb-show-errordisplay) > .sb-errordisplay {
display: none;
display: none;
}

.sb-wrapper {
Expand Down Expand Up @@ -48,13 +48,14 @@
font-size: 14px;
width: 100vw;
overflow: auto;
}</style><script>try {
}</style><script>/* globals window */
/* eslint-disable no-underscore-dangle */
try {
if (window.parent !== window) {
window.__REACT_DEVTOOLS_GLOBAL_HOOK__ = window.parent.__REACT_DEVTOOLS_GLOBAL_HOOK__;
window.__VUE_DEVTOOLS_GLOBAL_HOOK__ = window.parent.__VUE_DEVTOOLS_GLOBAL_HOOK__;
}
} catch (e) {
// eslint-disable-next-line no-console
console.warn('unable to connect to parent frame for connecting dev tools');
}</script></head><body><div class="sb-nopreview sb-wrapper"><div class="sb-nopreview_main"><h1 class="sb-nopreview_heading sb-heading">No Preview</h1><p>Sorry, but you either have no stories or none are selected somehow.</p><ul><li>Please check the storybook config.</li><li>Try reloading the page.</li></ul></div></div><div class="sb-errordisplay sb-wrapper"><div id="error-message" class="sb-heading"></div><pre class="sb-errordisplay_code">
<code id="error-stack"></code>
</pre></div><div id="root"></div><script src="static/runtime~iframe.36305751f78a2d599ec4.bundle.js"></script><script src="static/vendors~iframe.a718b918d562847a173e.bundle.js"></script><script src="static/iframe.5ef6d5dad4086ecaf75b.bundle.js"></script></body></html>
}</script></head><body><div class="sb-nopreview sb-wrapper"><div class="sb-nopreview_main"><h1 class="sb-nopreview_heading sb-heading">No Preview</h1><p>Sorry, but you either have no stories or none are selected somehow.</p><ul><li>Please check the Storybook config.</li><li>Try reloading the page.</li></ul><p>If the problem persists, check the browser console, or the terminal you've run Storybook from.</p></div></div><div class="sb-errordisplay sb-wrapper"><div id="error-message" class="sb-heading"></div><pre class="sb-errordisplay_code"><code id="error-stack"></code></pre></div><div id="root"></div><script src="runtime~main.60fa27b4f727247f6e30.bundle.js"></script><script src="vendors~main.60fa27b4f727247f6e30.bundle.js"></script><script src="main.60fa27b4f727247f6e30.bundle.js"></script></body></html>
9 changes: 6 additions & 3 deletions docs/storybook/index.html
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
<!doctype html><html><head><meta charset="utf-8"><title>Storybook</title><style>html, body {
<!doctype html><html><head><meta charset="utf-8"><title>Storybook</title><meta name="viewport" content="width=device-width,initial-scale=1"><style>html, body {
overflow: hidden;
height: 100%;
width: 100%;
margin: 0;
padding: 0;
}</style><script>try {
}</style><script>/* globals window */
/* eslint-disable no-underscore-dangle */
try {
if (window.parent !== window) {
window.__REACT_DEVTOOLS_GLOBAL_HOOK__ = window.parent.__REACT_DEVTOOLS_GLOBAL_HOOK__;
window.__VUE_DEVTOOLS_GLOBAL_HOOK__ = window.parent.__VUE_DEVTOOLS_GLOBAL_HOOK__;
}
} catch (e) {
// eslint-disable-next-line no-console
console.warn('unable to connect to parent frame for connecting dev tools');
}</script></head><body><div id="root"></div><script src="static/runtime~manager.9ffd8dd7b8642e4235e2.bundle.js"></script><script src="static/manager.8540b8ed8bc12e991f86.bundle.js"></script></body></html>
}</script></head><body><div id="root"></div><script src="runtime~main.3aaa912fd37e258bb4b5.bundle.js"></script><script src="vendors~main.7dc25e184ad00d8db131.bundle.js"></script><script src="main.ddcf8a9c97c3afa703ab.bundle.js"></script></body></html>
2 changes: 2 additions & 0 deletions docs/storybook/main.60fa27b4f727247f6e30.bundle.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions docs/storybook/main.60fa27b4f727247f6e30.bundle.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions docs/storybook/main.ddcf8a9c97c3afa703ab.bundle.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions docs/storybook/runtime~main.60fa27b4f727247f6e30.bundle.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions docs/storybook/sb_dll/storybook_ui-manifest.json

Large diffs are not rendered by default.

Loading

0 comments on commit 7acb9f9

Please sign in to comment.