-
Notifications
You must be signed in to change notification settings - Fork 196
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support AWS target for redis
winglib
#2171
Comments
As an experiment I tried writing bring redis as experimental; But when I do this today, I get a bug: error: Unknown symbol "Redis" in namespace "redis"
--> hello.w:4:26
|
4 | let r = new experimental.Redis();
| ^^^^^ Unknown symbol "Redis" in namespace "redis" |
bring redis
with bring misc
Hi @Chriscbr @staycoolcall911, I would like to work on this. Can you assign this to me? |
Hey @subh-cs thank you! However this task is dependent on Chris's current task #130, so let's wait for after it is done. |
Introduces the `wing pack` command - a standard way to package libraries in Wing. `wing pack` can be run in any Wing project directory that has a `package.json` in it. `wing pack` will validate your `package.json` produce a tarball that contains the libraries source files. For more documentation, see https://winglang.io/docs/libraries. ## Implementation When you `bring "foo"`, the parser now performs some Node module resolution to look up the `foo` package and see if it's a JSII library or a Wing library based on its `package.json`. If `bring "foo"` refers to a Wing library, then it's equivalent to bringing that library's root directory, per #4210. ## Future related work - #4415 - #4294 - #2171 ## Checklist - [x] Title matches [Winglang's style guide](https://www.winglang.io/contributing/start-here/pull_requests#how-are-pull-request-titles-formatted) - [x] Description explains motivation and solution - [x] Tests added (always) - [x] Docs updated (only required for features) - [ ] Added `pr/e2e-full` label if this feature requires end-to-end testing *By submitting this pull request, I confirm that my contribution is made under the terms of the [Wing Cloud Contribution License](https://github.com/winglang/wing/blob/main/CONTRIBUTION_LICENSE.md)*.
Hi @staycoolcall911, Can I start working on this? as it seems that #130 has been completed successfully. |
Thanks for the reference. |
|
Thanks for keeping it organized @subh-cs and @Chriscbr 🙏 |
redis
winglib
Hi, This issue hasn't seen activity in 90 days. Therefore, we are marking this issue as stale for now. It will be closed after 7 days. |
I keep trying to write the following code:
But the above code doesn't compile because the
redis
keyword is already takenOne option was to replace it with experimental, but this word feels too long.
The text was updated successfully, but these errors were encountered: