Skip to content
This repository was archived by the owner on Feb 23, 2023. It is now read-only.

Commit 0e57419

Browse files
squelixfknop
authored andcommitted
Add a module to each pipe (#97)
1 parent eaea4a5 commit 0e57419

File tree

215 files changed

+5202
-5534
lines changed

Some content is hidden

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

215 files changed

+5202
-5534
lines changed

.editorconfig

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Editor configuration, see http://editorconfig.org
2+
root = true
3+
4+
[*]
5+
charset = utf-8
6+
indent_style = space
7+
indent_size = 2
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true
10+
11+
[*.md]
12+
max_line_length = off
13+
trim_trailing_whitespace = false

.github/ISSUE_TEMPLATE.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
1-
**I'm submitting a ...** (check one with "x")
1+
**I'm submitting a ...** (check one with "x")
22

33
```
44
[ ] bug report => search github for a similar issue or PR before submitting
55
[ ] feature request
66
```
77

88
**Current behavior**
9+
910
<!-- Describe how the bug manifests. -->
1011

1112
**Expected behavior**
13+
1214
<!-- Describe what the behavior would be without the bug. -->
1315

1416
**Minimal reproduction of the problem with instructions**
1517

1618
<!--
17-
If the current behavior is a bug or you can illustrate your feature request better with an example,
19+
If the current behavior is a bug or you can illustrate your feature request better with an example,
1820
please provide the *STEPS TO REPRODUCE* and if possible a *MINIMAL DEMO* of the problem via
1921
https://plnkr.co or similar (you can use this template as a starting point: http://plnkr.co/edit/hBuPpDLUD9XViGKplzwf).
2022
-->
2123

22-
2324
**What is the motivation / use case for changing the behavior?**
25+
2426
<!-- If this is a feature request -->
2527
<!-- Describe the motivation or the concrete use case -->
26-
27-

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,5 @@ src/**/*.ngsummary.json
99
src/**/*.d.ts
1010
.vscode
1111
coverage
12-
package-lock.json
12+
package-lock.json
13+
yarn.lock

.prettierignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
build/
2+
dist/
3+
coverage/
4+
node_modules/

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ node_js:
88
services:
99
- xvfb
1010

11-
cache:
11+
cache:
1212
yarn: true
1313
directories:
1414
- node_modules

0 commit comments

Comments
 (0)