Skip to content

Commit

Permalink
feat(#6): added files field to package.json template (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
alemagio authored Jul 16, 2020
1 parent 92b28cb commit eb9ad44
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions template/index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use strict'

const app = require('src')

module.exports = {}
1 change: 1 addition & 0 deletions template/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"engines": {
"node": ">=10.0.0"
},
"files": ["src/"],
"scripts": {
"lint": "eslint . && <%= npmClient %> run lint:lockfile",
"lint:fix": "eslint . --fix",
Expand Down
3 changes: 3 additions & 0 deletions template/src/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
'use strict'

module.exports = {}

0 comments on commit eb9ad44

Please sign in to comment.