Use the lru-cache package from dev_bundle in caching-compiler.

This commit is contained in:
Ben Newman
2018-06-09 16:28:25 -04:00
parent ff82847cd6
commit 2bd67f334f
5 changed files with 1 additions and 23 deletions

View File

@@ -1 +0,0 @@
node_modules

View File

@@ -1,7 +0,0 @@
This directory and the files immediately inside it are automatically generated
when you change this package's NPM dependencies. Commit the files in this
directory (npm-shrinkwrap.json, .gitignore, and this README) to source control
so that others run the same versions of sub-dependencies.
You should NOT check in the node_modules directory that Meteor automatically
creates; if you are using git, the .gitignore file tells git to ignore it.

View File

@@ -1,10 +0,0 @@
{
"lockfileVersion": 1,
"dependencies": {
"lru-cache": {
"version": "2.6.4",
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-2.6.4.tgz",
"integrity": "sha1-JnUZDM0bBwHsL2UqTQ09QA12wN0="
}
}
}

View File

@@ -5,10 +5,6 @@ Package.describe({
documentation: 'README.md'
});
Npm.depends({
'lru-cache': '2.6.4',
});
Package.onUse(function(api) {
api.use(['ecmascript', 'random']);
api.addFiles(['caching-compiler.js'], 'server');

View File

@@ -53,7 +53,7 @@ var packageJson = {
multipipe: "2.0.1",
pathwatcher: "7.1.1",
optimism: "0.6.3",
'lru-cache': '4.1.1'
'lru-cache': '4.1.3'
}
};