We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06424ba commit d37b877Copy full SHA for d37b877
build/prep-release.js
@@ -125,21 +125,6 @@ const Repo = {
125
126
fs.writeFileSync(filePath, newSection + changes + oldContent);
127
}
128
- {
129
- const file = 'package-lock.json';
130
- console.log(`Updating ${file}...`);
131
- const filePath = path.join(__dirname, '..', file);
132
- const json = fs.readFileSync(filePath, 'utf8');
133
- const packageIndentation = json.match(/\n([\t\s]+)/)[1];
134
- const data = JSON.parse(json);
135
-
136
- data.version = data.packages[''].version = version;
137
138
- fs.writeFileSync(
139
- filePath,
140
- JSON.stringify(data, null, packageIndentation) + '\n'
141
- );
142
- }
143
{
144
const file = 'AUTHORS.txt';
145
console.log(`Updating ${file}...`);
0 commit comments