We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d42325d commit fb3f508Copy full SHA for fb3f508
scripts/specs/index.ts
@@ -73,12 +73,12 @@ async function buildSpec({
73
74
// In case of lite we use a the `search` spec as a base because only its bundled form exists.
75
const specBase = isLiteSpec ? 'search' : spec;
76
- const deps = isLiteSpec ? ['search', 'recommend'] : [spec];
77
const logSuffix = docs ? 'doc spec' : 'spec';
78
const basePath = docs ? 'docs/' : 'specs/';
+ const deps = isLiteSpec ? ['search', 'recommend'] : [spec];
79
const cache = new Cache({
80
folder: toAbsolutePath(basePath),
81
- generatedFiles: [`${spec}.yml`],
+ generatedFiles: [`bundled/${spec}.yml`],
82
filesToCache: [...deps, 'common'],
83
cacheFile: toAbsolutePath(`${basePath}/dist/${spec}.cache`),
84
});
0 commit comments