chore: fix pipeline instead of package.json (#23)

This commit is contained in:
Raymond Zhao 2023-04-04 13:50:35 -07:00 коммит произвёл GitHub
Родитель 9f7ec63200
Коммит 6ec2b67d31
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -30,6 +30,9 @@ extends:
- script: yarn --frozen-lockfile
displayName: Install dependencies
- script: yarn compile
displayName: Compile
# the rest of the build steps are part of the 'prepack' script, automatically run when the pipeline invokes 'yarn pack'
testPlatforms:

Просмотреть файл

@ -8,7 +8,6 @@
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"postinstall": "npm run compile",
"compile": "tsc -p ./",
"test": "mocha -r ts-node/register test/**/*.test.ts"
},