Skip to content

Commit 11be80e

Browse files
committed
Fixed an issue where regular expressions would be matched falsely at times
1 parent 4b2f784 commit 11be80e

10 files changed

+224
-3164
lines changed

.gitignore

+34-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,35 @@
1-
.idea
2-
/node_modules/
31
/compiled/
4-
/dist/
2+
/.idea/
3+
/.cache/
4+
/.vscode/
5+
*.log
6+
/logs/
7+
npm-debug.log*
8+
/lib-cov/
9+
/coverage/
10+
/.nyc_output/
11+
/.grunt/
12+
*.7z
13+
*.dmg
14+
*.gz
15+
*.iso
16+
*.jar
17+
*.rar
18+
*.tar
19+
*.zip
20+
.tgz
21+
.env
22+
.DS_Store
23+
.DS_Store?
24+
._*
25+
.Spotlight-V100
26+
.Trashes
27+
ehthumbs.db
28+
Thumbs.db
29+
*.pem
30+
*.p12
31+
*.crt
32+
*.csr
33+
/node_modules/
34+
/dist/
35+
package-lock.json

.npmignore

+36-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,38 @@
1-
.idea
2-
tsconfig.*
1+
/compiled/
2+
/.idea/
3+
/.cache/
4+
/.vscode/
5+
*.log
6+
/logs/
7+
npm-debug.log*
8+
/lib-cov/
9+
/coverage/
10+
/.nyc_output/
11+
/.grunt/
12+
*.7z
13+
*.dmg
14+
*.gz
15+
*.iso
16+
*.jar
17+
*.rar
18+
*.tar
19+
*.zip
20+
.tgz
21+
.env
22+
.DS_Store
23+
.DS_Store?
24+
._*
25+
.Spotlight-V100
26+
.Trashes
27+
ehthumbs.db
28+
Thumbs.db
29+
*.pem
30+
*.p12
31+
*.crt
32+
*.csr
333
/src/
34+
/tsconfig.*
35+
.gitignore
436
/test/
5-
/compiled/
37+
/typings/
38+
/tslint.json

0 commit comments

Comments
 (0)