threepipe
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

update-version.mjs 239B

1 anno fa
12345678
  1. // (echo export const VERSION = '$npm_package_version') > src/viewer/version.ts
  2. // in nodejs
  3. import {writeFileSync} from 'node:fs'
  4. writeFileSync('src/viewer/version.ts', `export const VERSION = '${process.env.npm_package_version}'\n`)