Bump LINKER_CACHE_SALT and compiler.BUILT_BY for good measure.

This commit is contained in:
Ben Newman
2017-10-08 14:05:42 -04:00
parent 68998d3658
commit 159ddefd1d
2 changed files with 2 additions and 2 deletions

View File

@@ -62,7 +62,7 @@ import { isTestFilePath } from './test-files.js';
// Cache the (slightly post-processed) results of linker.fullLink.
const CACHE_SIZE = process.env.METEOR_LINKER_CACHE_SIZE || 1024*1024*100;
const CACHE_DEBUG = !! process.env.METEOR_TEST_PRINT_LINKER_CACHE_DEBUG;
const LINKER_CACHE_SALT = 17; // Increment this number to force relinking.
const LINKER_CACHE_SALT = 18; // Increment this number to force relinking.
const LINKER_CACHE = new LRU({
max: CACHE_SIZE,
// Cache is measured in bytes. We don't care about servePath.

View File

@@ -34,7 +34,7 @@ var compiler = exports;
// dependencies. (At least for now, packages only used in target creation (eg
// minifiers) don't require you to update BUILT_BY, though you will need to quit
// and rerun "meteor run".)
compiler.BUILT_BY = 'meteor/29';
compiler.BUILT_BY = 'meteor/30';
// This is a list of all possible architectures that a build can target. (Client
// is expanded into 'web.browser' and 'web.cordova')