mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
10 lines
328 B
JavaScript
10 lines
328 B
JavaScript
const fs = require('fs');
|
|
const path = require('path');
|
|
|
|
const output = version => `export const version = '${version}';\n`;
|
|
|
|
const text = fs.readFileSync(path.join(__dirname, '../package.json'), 'utf8');
|
|
const json = JSON.parse(text);
|
|
|
|
fs.writeFileSync(path.join(__dirname, '../src/version.ts'), output(json.version), 'utf8');
|