We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd27158 commit 2038603Copy full SHA for 2038603
1 file changed
tasks.ts
@@ -36,7 +36,7 @@ const BuildPackage = (target: string = `target/build`) => Task.build.esm('src',
36
const PublishPackage = async (target: string = `target/build`) => {
37
const { version } = JSON.parse(await Task.file(`${target}/package.json`).read())
38
console.log(version)
39
- // await Task.shell(`cd ${target} && npm publish typebox-${version}.tgz --access=public`)
+ await Task.shell(`cd ${target} && npm publish typebox-${version}.tgz --access=public`)
40
// await Task.shell(`git tag ${version}`)
41
// await Task.shell(`git push origin ${version}`)
42
}
0 commit comments