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 7cd17ff commit 277715bCopy full SHA for 277715b
packages/deno-lint/version.js
@@ -0,0 +1,17 @@
1
+const { execSync } = require('child_process')
2
+const path = require('path')
3
+
4
+const { version } = require('./package.json')
5
+const platforms = require('./platforms')
6
+const updatePackageJson = require('./update-package')
7
8
+for (const name of [...platforms, 'musl']) {
9
+ const pkgDir = path.join(__dirname, 'npm', name)
10
+ updatePackageJson(path.join(pkgDir, 'package.json'), {
11
+ version,
12
+ })
13
+}
14
15
+execSync('git add .', {
16
+ stdio: 'inherit',
17
+})
0 commit comments