From: Eduardo San Martin Morote Date: Tue, 17 Aug 2021 15:37:45 +0000 (+0200) Subject: chore: correct cache path X-Git-Tag: @pinia/nuxt@0.0.1~22 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e5217ba5a1370fe1b60c399ff833339754be10ec;p=thirdparty%2Fvuejs%2Fpinia.git chore: correct cache path --- diff --git a/packages/size-check/rollup.config.js b/packages/size-check/rollup.config.js index a005c842..37f17bb3 100644 --- a/packages/size-check/rollup.config.js +++ b/packages/size-check/rollup.config.js @@ -44,7 +44,7 @@ function createConfig(file) { ts({ check: false, tsconfig: path.resolve(__dirname, '../../tsconfig.json'), - cacheRoot: path.resolve(__dirname, '../node_modules/.rts2_cache'), + cacheRoot: path.resolve(__dirname, '../../node_modules/.rts2_cache'), tsconfigOverride: { compilerOptions: { sourceMap: false, diff --git a/rollup.config.js b/rollup.config.js index 8b9712d5..6166e327 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -104,7 +104,7 @@ function createConfig(format, output, plugins = []) { const tsPlugin = ts({ check: !hasTSChecked, tsconfig: path.resolve(__dirname, './tsconfig.json'), - cacheRoot: path.resolve(__dirname, 'node_modules/.rts2_cache'), + cacheRoot: path.resolve(__dirname, './node_modules/.rts2_cache'), tsconfigOverride: { compilerOptions: { sourceMap: output.sourcemap,