Skip to content

Commit

Permalink
fix: removes unnecessary tsc step in sveltekit build script
Browse files Browse the repository at this point in the history
  • Loading branch information
krpeacock committed Jan 21, 2025
1 parent 06eaa58 commit 7613c91
Show file tree
Hide file tree
Showing 4 changed files with 85 additions and 8 deletions.
16 changes: 9 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

# UNRELEASED

### fix: removes unnecessary tsc step in sveltekit build script

# 0.20.2

### fix: `dfx canister delete` fails
Expand Down Expand Up @@ -360,7 +362,7 @@ For reference, these formats were removed (any '-' characters were replaced by '
### feat: add `dfx canister logs <canister_id>` for fetching canister's logs (preview)
There is a new subcommand `logs` to fetch canister's logs.
There is a new subcommand `logs` to fetch canister's logs.
When printing the log entries it tries to guess if the content can be converted to UTF-8 text and prints an array of hex bytes if it fails.
**Note**
Expand All @@ -376,7 +378,7 @@ The query parameter format is not removed because Safari does not support localh
### fix: .env files sometimes missing some canister ids
Made it so `dfx deploy` and `dfx canister install` will always write
Made it so `dfx deploy` and `dfx canister install` will always write
environment variables for all canisters in the project that have canister ids
to the .env file, even if they aren't being deployed/installed
or a dependency of a canister being deployed/installed.
Expand All @@ -386,15 +388,15 @@ or a dependency of a canister being deployed/installed.
There are a few subcommands that take `--argument`/`--argument-file` options to set canister call/init arguments.
We unify the related logic to provide consistent user experience.
The notable changes are:
- `dfx deploy` now accepts `--argument-file`.
- `dfx deps init` now accepts `--argument-file`.
### feat: candid assist feature
Ask for user input when Candid argument is not provided in `dfx canister call`, `dfx canister install` and `dfx deploy`.
Ask for user input when Candid argument is not provided in `dfx canister call`, `dfx canister install` and `dfx deploy`.
Previously, we cannot call `dfx deploy --all` when multiple canisters require init args, unless the init args are specified in `dfx.json`. With the Candid assist feature, dfx now asks for init args in terminal when a canister requires init args.
### fix: restored access to URLs like http://localhost:8080/api/v2/status through icx-proxy
Expand Down Expand Up @@ -543,7 +545,7 @@ If you build with custom canister type, add the following into `dfx.json`:
```
"metadata": [
{
{
"name": "candid:service"
}
]
Expand Down Expand Up @@ -578,7 +580,7 @@ Fix the bug that when parsing `vec \{1;2;3\}` with `blob` type, dfx silently ign
### fix: support `import` for local did file
If the local did file contains `import` or init args, dfx will rewrite the did file when storing in canister metadata.
Due to current limitations of the Candid parser, comments will be dropped during rewriting.
Due to current limitations of the Candid parser, comments will be dropped during rewriting.
If the local did file doesn't contain `import` or init args, we will not perform the rewriting, thus preserving the comments.
### fix: subtyping check reports the special opt rule as error
Expand Down Expand Up @@ -967,7 +969,7 @@ This incorporates the following executed proposals:
- [124537](https://dashboard.internetcomputer.org/proposal/124537)
- [124488](https://dashboard.internetcomputer.org/proposal/124488)
- [124487](https://dashboard.internetcomputer.org/proposal/124487)
# 0.15.0
## DFX
Expand Down
71 changes: 71 additions & 0 deletions e2e/playwright/playwright-report/index.html

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions e2e/playwright/test-results/.last-run.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"status": "passed",
"failedTests": []
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"setup": "npm i && dfx canister create {backend_name} && dfx generate {backend_name} && dfx deploy",
"start": "vite --port 3000",
"prebuild": "dfx generate",
"build": "tsc && vite build",
"build": "vite build",
"format": "prettier --write \"src/**/*.{json,js,jsx,ts,tsx,css,scss}\""
},
"dependencies": {
Expand Down

0 comments on commit 7613c91

Please sign in to comment.