Skip to content

Commit

Permalink
move main to index.js
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacs committed Jun 6, 2017
1 parent 4ef200a commit d342daa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
File renamed without changes.
6 changes: 3 additions & 3 deletions package.json
Expand Up @@ -10,9 +10,9 @@
],
"scripts": {
"test": "tap test --100",
"posttest": "standard test/*.js lib/*.js"
"posttest": "standard test/*.js index.js"
},
"main": "lib/lru-cache.js",
"main": "index.js",
"repository": "git://github.com/isaacs/node-lru-cache.git",
"devDependencies": {
"standard": "^5.4.1",
Expand All @@ -24,6 +24,6 @@
"yallist": "^2.0.0"
},
"files": [
"lib/lru-cache.js"
"index.js"
]
}

3 comments on commit d342daa

@gajus
Copy link

@gajus gajus commented on d342daa Jun 6, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What feature has been added?

@isaacs
Copy link
Owner Author

@isaacs isaacs commented on d342daa Jun 6, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In this commit? Nothing, except bringing the code structure more in line with my other modules.

4.1 added the noDisposeOnSet option, though.

@gajus
Copy link

@gajus gajus commented on d342daa Jun 6, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

4.1 added the noDisposeOnSet option, though.

Thats what I was asking about. Thank you.

Please sign in to comment.