Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 10 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8
- run: |
npm ci
pnpm i --frozen-lockfile
- run: |
npm run all
pnpm run all
- name: Verify no unstaged changes
run: __test__/verify-no-unstaged-changes.sh

Expand All @@ -32,8 +35,11 @@ jobs:
- uses: actions/setup-node@v3
with:
node-version: '16'
- uses: pnpm/action-setup@v2
with:
version: 8
- run: |
npm ci
pnpm i --frozen-lockfile
- run: |
npm run build
pnpm run build
- uses: ./
2 changes: 2 additions & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
public-hoist-pattern[]=*@one-ini/wasm
public-hoist-pattern[]=*@cdktf/hcl2json
6 changes: 3 additions & 3 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,18 @@
"version": "0.2.0",
"configurations": [
{
"type": "pwa-node",
"type": "node",
"request": "launch",
"name": "Launch Program",
"skipFiles": ["<node_internals>/**"],
"env": {
"TRY_USE_TEST_CONTEXT": "true"
},
"program": "${workspaceFolder}/src/main.ts",
"program": "${workspaceFolder}/src/index.ts",
"runtimeArgs": [
"--nolazy",
"-r",
"ts-node/register/transpile-only",
"esbuild-register",
"-r",
"dotenv/config"
],
Expand Down
704,908 changes: 2,935 additions & 701,973 deletions dist/index.js

Large diffs are not rendered by default.

172 changes: 172 additions & 0 deletions dist/index.js.LEGAL.txt

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading