Skip to content

Commit c7e4e13

Browse files
committed
chore: deconstruct addressbase-plus-blueprint
1 parent f3af145 commit c7e4e13

5 files changed

Lines changed: 8937 additions & 17 deletions

File tree

.gitignore

Lines changed: 178 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,178 @@
1+
# Compiled source #
2+
###################
3+
*.com
4+
*.class
5+
*.dll
6+
*.exe
7+
*.o
8+
*.so
9+
10+
# Packages #
11+
############
12+
# it's better to unpack these files and commit the raw source
13+
# git has its own built in compression methods
14+
*.7z
15+
*.dmg
16+
*.gz
17+
*.iso
18+
*.jar
19+
*.rar
20+
*.tar
21+
*.zip
22+
23+
# Logs and databases #
24+
######################
25+
*.log
26+
*.sql
27+
*.sqlite
28+
29+
## Node ###
30+
~*
31+
.~*
32+
\#*
33+
34+
# Logs
35+
logs
36+
*.log
37+
npm-debug.log*
38+
39+
# Runtime data
40+
pids
41+
*.pid
42+
*.seed
43+
*.pid.lock
44+
45+
# Directory for instrumented libs generated by jscoverage/JSCover
46+
lib-cov
47+
48+
# Coverage directory used by tools like istanbul
49+
coverage
50+
51+
# nyc test coverage
52+
.nyc_output
53+
54+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
55+
.grunt
56+
57+
# node-waf configuration
58+
.lock-wscript
59+
60+
# Compiled binary addons (http://nodejs.org/api/addons.html)
61+
build/Release
62+
63+
# Dependency directories
64+
node_modules
65+
jspm_packages
66+
67+
# Optional npm cache directory
68+
.npm
69+
70+
# Optional eslint cache
71+
.eslintcache
72+
73+
# Optional REPL history
74+
.node_repl_history
75+
76+
# Output of 'npm pack'
77+
*.tgz
78+
79+
# Yarn Integrity file
80+
.yarn-integrity
81+
82+
83+
## IDE things ##
84+
85+
# Webstorm
86+
.idea
87+
88+
# Eclipse:
89+
90+
.project
91+
.metadata
92+
bin/
93+
tmp/
94+
*.tmp
95+
*.bak
96+
*.swp
97+
*~.nib
98+
local.properties
99+
.settings/
100+
.loadpath
101+
.recommenders
102+
103+
104+
scratch.txt
105+
106+
output/
107+
108+
# Ignore Rush temporary files
109+
/common/temp/**
110+
111+
package-deps.json
112+
113+
.yo-rc.json
114+
115+
lerna-debug.log
116+
117+
TEST-result.xml
118+
.gradle/
119+
.embedpostgresql/
120+
build/
121+
122+
# Windows thumbnail cache files
123+
Thumbs.db
124+
ehthumbs.db
125+
ehthumbs_vista.db
126+
127+
# Dump file
128+
*.stackdump
129+
130+
# Folder config file
131+
[Dd]esktop.ini
132+
133+
# Recycle Bin used on file shares
134+
$RECYCLE.BIN/
135+
136+
# Windows Installer files
137+
*.cab
138+
*.msi
139+
*.msix
140+
*.msm
141+
*.msp
142+
143+
# Windows shortcuts
144+
*.lnk
145+
146+
# OS generated files #
147+
######################
148+
.DS_Store
149+
.DS_Store?
150+
._*
151+
.Spotlight-V100
152+
.Trashes
153+
ehthumbs.db
154+
Thumbs.db
155+
.LSOverride
156+
157+
# Icon must end with two \r
158+
Icon
159+
160+
161+
# Thumbnails
162+
._*
163+
164+
# Files that might appear in the root of a volume
165+
.DocumentRevisions-V100
166+
.fseventsd
167+
.Spotlight-V100
168+
.TemporaryItems
169+
.Trashes
170+
.VolumeIcon.icns
171+
.com.apple.timemachine.donotpresent
172+
173+
# Directories potentially created on remote AFP share
174+
.AppleDB
175+
.AppleDesktop
176+
Network Trash Folder
177+
Temporary Items
178+
.apdisk

.travis.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
language: node_js
2+
cache:
3+
directories:
4+
- ~/.npm
5+
notifications:
6+
email: false
7+
node_js:
8+
- '9'
9+
services:
10+
- postgres
11+
addons:
12+
postgresql: "9.6"
13+
sudo: false
14+
dist: trusty
15+
env:
16+
global:
17+
- PG_CONNECTION_STRING=postgres://postgres:postgres@localhost:5432/travis_ci_test
18+
- TIMEOUT=15000
19+
install:
20+
- npm install
21+
before_script:
22+
- psql -c 'create database travis_ci_test;' -U postgres
23+
test:
24+
- npm test
25+
after_success:
26+
- npm run coverage
27+
deploy:
28+
provider: script
29+
script_cleanup: true
30+
script:
31+
- npx semantic-release

0 commit comments

Comments
 (0)