]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/commitdiff
Fix generate types package script
authorChocobozzz <me@florianbigard.com>
Thu, 16 Dec 2021 16:17:16 +0000 (17:17 +0100)
committerChocobozzz <me@florianbigard.com>
Thu, 16 Dec 2021 16:19:42 +0000 (17:19 +0100)
support/doc/development/lib.md
types/generate-package.ts

index 097afa4fb38f6110f21090525ff423556d6c789e..0c77cff563126d474f22537aeaa3ce365842ba9a 100644 (file)
@@ -18,7 +18,7 @@ The complete types package is generated via:
 
 ```
 $ npm run generate-types-package
-$ cd dist
+$ cd types/dist
 $ npm publish --access=public
 ```
 
index ae79374308e144abd9a56f43e9f6ecfc3117b0e1..e20e9b624f66d57ec8251894a25cc3f01bdebc33 100644 (file)
@@ -12,7 +12,7 @@ run()
   })
 
 async function run () {
-  execSync('npm run build:types', { stdio: 'inherit' })
+  execSync('npm run tsc -- -b --verbose types', { stdio: 'inherit' })
 
   const typesPath = resolve(cwd(), './types/')
   const typesDistPath = resolve(cwd(), typesPath, './dist/')