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 7dd781b commit 20914ebCopy full SHA for 20914eb
tool/prepare-release.ts
@@ -6,6 +6,7 @@ import {promises as fs} from 'fs';
6
import * as shell from 'shelljs';
7
8
import * as pkg from '../package.json';
9
+import {getDeprecations} from './get-deprecations';
10
import {getLanguageRepo} from './get-language-repo';
11
12
void (async () => {
@@ -14,6 +15,8 @@ void (async () => {
14
15
16
await getLanguageRepo('lib/src/vendor');
17
18
+ await getDeprecations('lib/src/vendor');
19
+
20
console.log('Transpiling TS into dist.');
21
shell.exec('tsc -p tsconfig.build.json');
22
shell.cp('lib/index.mjs', 'dist/lib/index.mjs');
0 commit comments