Skip to content

Commit 67bbfe3

Browse files
authored
Port to use awilix-router-core (#6)
* Port to use awilix-router-core * Update package-lock.json * Update TS to try to fix Travis problem * Update README * Remove package-lock.json * Update dependencies
1 parent 3e5d427 commit 67bbfe3

33 files changed

+3959
-1387
lines changed

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
11
*.log
22
node_modules/
33
coverage/
4+
lib/
5+
.nyc_output
6+
.test-out
7+
.DS_Store
8+
.idea/workspace.xml
9+
.sublime-workspace
10+
.npmrc

.travis.yml

Lines changed: 17 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,20 @@
11
language: node_js
2+
cache:
3+
directories:
4+
- node_modules
5+
notifications:
6+
email: false
7+
28
node_js:
3-
- "node"
4-
- "6.1"
5-
- "6.0"
6-
script:
9+
- "stable"
10+
- "8"
11+
- "7"
12+
- "6"
13+
14+
# Lint errors should trigger a failure.
15+
before_script:
716
- npm run lint
8-
- npm test
9-
- npm run coveralls
17+
- npm run build
18+
19+
# Runs the coverage script (which runs the tests)
20+
script: npm run coveralls

LICENSE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
MIT License
1+
# The MIT License (MIT)
22

3-
Copyright (c) 2017 Awilix-Express
3+
Copyright (c) Talysson de Oliveira Cassiano 2018 to present.
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

0 commit comments

Comments
 (0)