mirror of
https://github.com/serverless/serverless.git
synced 2026-01-18 14:58:43 +00:00
11 lines
272 B
JavaScript
11 lines
272 B
JavaScript
'use strict';
|
|
|
|
const os = require('os');
|
|
const fs = require('fs');
|
|
|
|
const pkgJson = JSON.parse(fs.readFileSync('package.json'));
|
|
|
|
pkgJson.dependencies['@serverless/enterprise-plugin'] = 'next';
|
|
|
|
fs.writeFileSync('package.json', JSON.stringify(pkgJson, null, 2) + os.EOL);
|