Julien

Results 34 comments of Julien

ts-node and typescript are now *optional* peer dependencies. The npm package now includes bundled versions of these to fallback to if no peer dependencies are installed. If you add your...

The zip files that get uploaded are stored in `${tmp}/pulumi-asset-${hash}`, where the hash is based on the file contents of what should be in the zip, but sometimes these files...

The AssetArchive to upload gets stored as zip file in `${TEMP}/pulumi-asset-${HASH}`, with ${HASH} based on the contents of the archive. When we run `pulumi update --refresh` and the zip files...

Local reproduction: 1. Deploy a lambda (note that the newly created `${TEMP}/pulumi-asset-${HASH}` file is larger than 22B) 2. Delete `${TEMP}/pulumi-asset-${HASH}` 3. Edit the code of the lambda 4. pulumi up...

I ran into the same issue. Interestingly there's double `Z` in the last_sync_time: ``` cat ~/.local/share/atuin/last_sync_time 2024-01-31T14:04:11.24851ZZ ``` last_version_check looks fine: ``` % cat ~/.local/share/atuin/last_version_check_time 2024-02-01T21:36:58.74224Z ```

If you add the app_name _after_ you already added the plugin to a page, try deleting the page and recreating it, for me that did the trick. If an app_name...

> Is this correct for pre 19 as well? Good question. It is sort of correct ... the test should fail on node 18. I just pushed code to skip...

Hi @mickey0425, if you adapted one of the examples it is likely that the issue is towards the end of your main function. The examples read the output from the...

There's at least 3 separate issues here: 1. We don't recognise some "newer" builtin modules like `fs/promises`. The fix here is straight forward https://github.com/pulumi/pulumi/pull/15830 2. We can't serialise values that...

I can reproduce this error with a test case like this (where func is the function to be serialised): ```js const isArray = Array.isArray; export const func = async ()...