.dependabot
.github
cypress
dev-test
img
packages
scripts
cache.js
externals.js
webpack.js
website
.all-contributorsrc
.editorconfig
.eslintrc
.gitignore
.nvmrc
.prettierignore
.prettierrc
.stylelintrc
CHANGELOG.md
CODE_OF_CONDUCT.md
CONTRIBUTING.md
LICENSE
README.md
azure-pipelines.yml
babel.config.js
custom-preprocessor.js
cypress.json
jest.config.js
lerna.json
package.json
renovate.json
setupTestFramework.js
yarn.lock
16 lines
363 B
JavaScript
16 lines
363 B
JavaScript
const os = require('os');
|
|
const path = require('path');
|
|
const cache = require('cache-me-outside');
|
|
|
|
cache({
|
|
cacheFolder: path.join('/', 'opt', 'build', 'cache', 'fast-cache'),
|
|
contents: [
|
|
{
|
|
path: path.join(os.homedir(), '.cache', 'Cypress'),
|
|
invalidateOn: __filename,
|
|
command: 'echo noop',
|
|
},
|
|
],
|
|
ignoreIfFolderExists: false,
|
|
});
|