chore: add eval script (#743)

This commit is contained in:
Pavel Feldman 2025-07-23 10:31:37 -07:00 committed by GitHub
parent 288f1b863b
commit 2c5eac89a8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 405 additions and 59 deletions

View file

@ -14,9 +14,9 @@
* limitations under the License.
*/
import fs from 'node:fs';
import url from 'node:url';
import path from 'node:path';
import fs from 'fs';
import path from 'path';
import url from 'url';
const __filename = url.fileURLToPath(import.meta.url);
export const packageJSON = JSON.parse(fs.readFileSync(path.join(path.dirname(__filename), '..', 'package.json'), 'utf8'));