Skip to content
This repository has been archived by the owner on Jun 8, 2021. It is now read-only.

Commit

Permalink
Merge branch 'release/4.0.11'
Browse files Browse the repository at this point in the history
  • Loading branch information
thetutlage committed Jan 18, 2019
2 parents f29eb7f + 32f5601 commit bb5d658
Show file tree
Hide file tree
Showing 17 changed files with 167 additions and 10,354 deletions.
2 changes: 1 addition & 1 deletion .github/PULL_REQUEST_TEMPLATE.md
Expand Up @@ -18,7 +18,7 @@ _Put an `x` in the boxes that apply_

_Put an `x` in the boxes that apply. You can also fill these out after creating the PR. If you're unsure about any of them, don't hesitate to ask. We're here to help! This is simply a reminder of what we are going to look for before merging your code._

- [ ] I have read the [CONTRIBUTING](https://github.com/adonisjs/adonis-cli/CONTRIBUTING.md) doc
- [ ] I have read the [CONTRIBUTING](https://github.com/adonisjs/adonis-cli/blob/develop/CONTRIBUTING.md) doc
- [ ] Lint and unit tests pass locally with my changes
- [ ] I have added tests that prove my fix is effective or that my feature works.
- [ ] I have added necessary documentation (if appropriate)
Expand Down
4 changes: 3 additions & 1 deletion .gitignore
Expand Up @@ -11,6 +11,8 @@ test/yardstick-app
*.sublime-project
*.sublime-workspace
*.log
yarn.lock
build
dist
yarn.lock
shrinkwrap.yaml
package-lock.json
2 changes: 2 additions & 0 deletions .travis.yml
Expand Up @@ -5,6 +5,8 @@ node_js:
sudo: false
install:
- npm install
after_script:
- npm run coverage
notifications:
slack:
secure: >-
Expand Down
57 changes: 57 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,60 @@
<a name="4.0.11"></a>
## [4.0.11](https://github.com/adonisjs/adonis-cli/compare/v4.0.10...v4.0.11) (2019-01-18)


### Bug Fixes

* **new:** correctly verify the versionn of npm ([1ceef76](https://github.com/adonisjs/adonis-cli/commit/1ceef76))


### Features

* **new:** add api flag as alternative to api-only ([fb88973](https://github.com/adonisjs/adonis-cli/commit/fb88973))
* **new:** remove dev flag ([3f8394b](https://github.com/adonisjs/adonis-cli/commit/3f8394b))



<a name="4.0.10"></a>
## [4.0.10](https://github.com/adonisjs/adonis-cli/compare/v4.0.9...v4.0.10) (2018-11-27)


### Bug Fixes

* **deps:** upgrade `nodemon` ([#117](https://github.com/adonisjs/adonis-cli/issues/117)) ([8a77564](https://github.com/adonisjs/adonis-cli/commit/8a77564))



<a name="4.0.9"></a>
## [4.0.9](https://github.com/adonisjs/adonis-cli/compare/v4.0.8...v4.0.9) (2018-10-02)


### Bug Fixes

* use bgGreen vs bgGreenBright coz of kleur over chalk ([56eaba2](https://github.com/adonisjs/adonis-cli/commit/56eaba2))



<a name="4.0.8"></a>
## [4.0.8](https://github.com/adonisjs/adonis-cli/compare/v4.0.7...v4.0.8) (2018-10-01)


### Features

* **intellisense:** add type comments to templates ([878154a](https://github.com/adonisjs/adonis-cli/commit/878154a))
* **template:** add typedoc to middleware template ([9920b4a](https://github.com/adonisjs/adonis-cli/commit/9920b4a))



<a name="4.0.7"></a>
## [4.0.7](https://github.com/adonisjs/adonis-cli/compare/v4.0.6...v4.0.7) (2018-09-05)


### Features

* **serve:** add ignore options ([#115](https://github.com/adonisjs/adonis-cli/issues/115)) ([876d13e](https://github.com/adonisjs/adonis-cli/commit/876d13e))



<a name="4.0.6"></a>
## [4.0.6](https://github.com/adonisjs/adonis-cli/compare/v4.0.5...v4.0.6) (2018-08-03)

Expand Down
2 changes: 1 addition & 1 deletion LICENSE.md
@@ -1,6 +1,6 @@
# The MIT License

Copyright 2018 thetutlage, contributors
Copyright 2018 Harminder Virk, contributors

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Expand Up @@ -9,7 +9,7 @@ install:
test_script:
- node --version
- npm --version
- 'npm run test:win'
- npm run test
build: 'off'
clone_depth: 1
matrix:
Expand Down
6 changes: 4 additions & 2 deletions japaFile.js
@@ -1,2 +1,4 @@
const cli = require('japa/cli')
cli.run('test/**/*.spec.js')
const { configure } = require('japa')
configure({
files: ['test/**/*.spec.js']
})

0 comments on commit bb5d658

Please sign in to comment.