Skip to content

Commit

Permalink
fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
Laurent Renard authored and Laurent Renard committed Oct 18, 2018
1 parent 3d07783 commit f4d0efa
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 12 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,6 @@ jspm_packages
# Optional REPL history
.node_repl_history

dist
.idea
.DS_Store
14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "smart-table-filter",
"version": "2.0.1",
"version": "2.0.2",
"description": "takes a configuration object and returns a filter function operating on arrays",
"main": "./dist/bundle/index",
"module": "./dist/src/index.js",
"typings": "./dist/src/index.ts",
"types": "./dist/src/index.d.ts",
"scripts": {
"test:ci": "npm run build && npm test",
"test": "rollup -c ./test/rollup.config.js | node | tap-diff",
Expand Down Expand Up @@ -32,8 +32,8 @@
},
"homepage": "https://github.com/smart-table/smart-table-filter#readme",
"dependencies": {
"smart-table-json-pointer": "^2.0.1",
"smart-table-operators": "^2.0.6"
"smart-table-json-pointer": "^2.0.2",
"smart-table-operators": "^2.0.7"
},
"devDependencies": {
"rollup": "^0.63.5",
Expand Down
3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,10 @@
"moduleResolution": "node",
"noImplicitAny": false,
"preserveConstEnums": true,
"declaration": true,
"target": "es2017"
},
"include": [
"./dist/src/*"
]
}
}

0 comments on commit f4d0efa

Please sign in to comment.