Skip to content

Commit

Permalink
[WIP]
Browse files Browse the repository at this point in the history
  • Loading branch information
LichKing-2234 committed Sep 21, 2023
1 parent 2f9a4cb commit b04bd71
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 11 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,4 @@ jobs:
scope: "@agoraio-extensions"

- name: Run unit test
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
run: bash tool/run_ut.sh
4 changes: 4 additions & 0 deletions cxx-parser/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
"main": "src/index",
"author": "",
"license": "ISC",
"scripts": {
"build": "tsc",
"test": "jest --coverage"
},
"peerDependencies": {
"@agoraio-extensions/terra-core": ">=0.1.0"
},
Expand Down
14 changes: 9 additions & 5 deletions terra-core/package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,20 @@
{
"name": "@agoraio-extensions/terra-core",
"repository": {
"type": "git",
"url": "git+https://github.com/AgoraIO-Extensions/terrax.git"
},
"version": "0.1.2",
"main": "./src/index",
"scripts": {
"build": "tsc",
"test": "jest --coverage"
},
"author": "",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/AgoraIO-Extensions/terrax.git"
},
"bugs": {
"url": "https://github.com/AgoraIO-Extensions/terrax/issues"
},
"homepage": "https://github.com/AgoraIO-Extensions/terrax#readme",
"description": ""
}
}
6 changes: 4 additions & 2 deletions terra/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@
"terra": "./src/bin"
},
"scripts": {
"start": "ts-node -T ./src/bin"
"build": "tsc",
"start": "ts-node -T ./src/bin",
"test": "jest --coverage"
},
"keywords": [],
"author": "",
Expand All @@ -28,4 +30,4 @@
},
"homepage": "https://github.com/AgoraIO-Extensions/terrax#readme",
"description": ""
}
}
1 change: 0 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"outDir": "dist",
"strict": true,
"sourceMap": true,
"esModuleInterop": true
Expand Down

0 comments on commit b04bd71

Please sign in to comment.