Skip to content

Commit

Permalink
Skel changes
Browse files Browse the repository at this point in the history
* Removed comma-dangle config since it's included in the config
* Updated .npmignore and .gitignore
* Removed licenses in favour of licence from package.json
* Cleaned up lint commands
* Removed deprecated test-cov and view-cov commands (TODO replace these)
  • Loading branch information
rwky committed Jun 18, 2019
1 parent 08f920c commit a66721e
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 18 deletions.
1 change: 0 additions & 1 deletion .eslintrc.js
Expand Up @@ -57,7 +57,6 @@ module.exports = {
// 'jest'
],
rules: {
'comma-dangle': 2,
'no-underscore-dangle': 0,
'no-param-reassign': 0,

Expand Down
2 changes: 2 additions & 0 deletions .gitignore
@@ -1,4 +1,6 @@
reports/
doc/
var/


package-lock.json
Expand Down
15 changes: 10 additions & 5 deletions .npmignore
@@ -1,10 +1,15 @@
CONTRIBUTING.md
Makefile
docs/
.DS_Store
.eslintignore
.eslintrc.js
examples/
.github
.github/
.gitlab-ci.yml
Makefile
reports/
temmplates
test/
.github/
.travis.yml
.gitlab-ci.yml
.eslintrc.js
.eslintignore
var/
10 changes: 10 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,15 @@
This changelog follows Semantic Versioning https://semver.org/

# 1.0.2 (2019-06-18)

### Patch

* Removed comma-dangle config since it's included in the config
* Updated .npmignore and .gitignore
* Removed licenses in favour of licence from package.json
* Cleaned up lint commands
* Removed deprecated test-cov and view-cov commands (TODO replace these)

# 1.0.1 (2019-06-15)

### Patch
Expand Down
16 changes: 4 additions & 12 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "@passport-next/skel",
"version": "1.0.1",
"version": "1.0.2",
"description": "Passport next project skeleton",
"author": {
"name": "Passport Next Developers",
Expand Down Expand Up @@ -45,12 +45,6 @@
"authentication"
],
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "http://opensource.org/licenses/MIT"
}
],
"main": "./lib",
"repository": {
"type": "git",
Expand All @@ -59,10 +53,8 @@
"scripts": {
"templates": "node ./templates/gen.js",
"init-new-project": "node ./templates/gen --init",
"lint": "./node_modules/.bin/eslint --report-unused-disable-directives --max-warnings 0 --ext js,md .",
"lintfix": "./node_modules/.bin/eslint --ext js,md . --fix",
"test": "./node_modules/.bin/mocha --reporter spec --require test/bootstrap/node test/*.test.js test/**/*.test.js",
"test-cov": "make test-cov",
"view-cov": "make view-cov"
"lint": "eslint --max-warnings 0 --ext js,md .",
"lintfix": "eslint --ext js,md . --fix",
"test": "mocha --reporter spec --require test/bootstrap/node test/*.test.js test/**/*.test.js"
}
}

0 comments on commit a66721e

Please sign in to comment.