ae29a2751b
* `@actions/cache`: convert to an ESM module * Update the fixture to ESM syntax * Update the cache workflows * Bump `@actions/glob` to `0.6.1` * Fix awaiting in the cache unit tests * Fix a type issues in contracts * Export the `DownloadOptions`/`UploadOptions` like before * More cache test fixes * Make the cache units tests better * Add some more logging * Add retries to restore-cache.mjs
8 lines
458 B
JavaScript
8 lines
458 B
JavaScript
// This file exists as a CommonJS module to read the version from package.json.
|
|
// In an ESM package, using `require()` directly in .ts files requires disabling
|
|
// ESLint rules and doesn't work reliably across all Node.js versions.
|
|
// By keeping this as a .cjs file, we can use require() naturally and export
|
|
// the version for the ESM modules to import.
|
|
const packageJson = require('../../../package.json')
|
|
module.exports = { version: packageJson.version }
|