mirror of
https://github.com/immich-app/immich.git
synced 2024-11-16 18:42:17 -07:00
10 lines
302 B
JavaScript
10 lines
302 B
JavaScript
|
const spec = require('../immich-openapi-specs.json');
|
||
|
const pkg = require('../../server/package.json');
|
||
|
const path = require('path');
|
||
|
const fs = require('fs');
|
||
|
spec.info.version = pkg.version;
|
||
|
fs.writeFileSync(
|
||
|
path.join(__dirname, '../immich-openapi-specs.json'),
|
||
|
JSON.stringify(spec, null, 2)
|
||
|
);
|