Skip to content

Commit

Permalink
remove install-dfx-extension
Browse files Browse the repository at this point in the history
  • Loading branch information
lastmjs committed Aug 29, 2024
1 parent 8029ff2 commit 0a4e315
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 11 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -376,9 +376,6 @@ jobs:
shell: bash -l {0}
working-directory: ${{ matrix.example_directories }}
run: npm link azle
- if: ${{ needs.release-candidate-deploy.outputs.should_run_tests }}
working-directory: ${{ matrix.example_directories }}
run: npx azle install-dfx-extension
- if: ${{ needs.release-candidate-deploy.outputs.should_run_tests }}
working-directory: ${{ matrix.example_directories }}
run: dfx start --clean --background --host 127.0.0.1:8000
Expand Down
7 changes: 0 additions & 7 deletions dfx_extension/dependencies.json

This file was deleted.

1 change: 1 addition & 0 deletions package-lock.json

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

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"typecheck": "tsc --noEmit",
"lint": "if [ \"$npm_config_fix\" ]; then eslint . --ext .js,.ts --cache --fix; else eslint . --ext .js,.ts --cache; fi",
"prepare": "./install_wasmedge_quickjs.sh && husky install",
"install": "cd dfx_extension && ./install.sh",
"test": "test/test.sh"
},
"type": "module",
Expand Down
4 changes: 3 additions & 1 deletion src/lib/stable/globals.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,9 @@ if (globalThis._azleInsideCanister === true) {
info: log
};

(globalThis as any).Buffer = createExperimentalWarningProxy('Buffer');
if (globalThis._azleExperimental === false) {
(globalThis as any).Buffer = createExperimentalWarningProxy('Buffer');
}
}

function createExperimentalWarningProxy(name: string): object {
Expand Down

0 comments on commit 0a4e315

Please sign in to comment.