Skip to content

Commit

Permalink
fix: ensure npm name is lowercase
Browse files Browse the repository at this point in the history
  • Loading branch information
rawkode committed May 10, 2023
1 parent 0c0ae1f commit b434d83
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ This package is available for several languages/platforms:
To use from JavaScript or TypeScript in Node.js, install using either `npm`:

```bash
npm install @RedisLabs/pulumi-rediscloud
npm install @redislabs/pulumi-rediscloud
```

or `yarn`:

```bash
yarn add @RedisLabs/pulumi-rediscloud
yarn add @redislabs/pulumi-rediscloud
```

### Python
Expand All @@ -38,6 +38,8 @@ go get github.com/RedisLabs/pulumi-rediscloud/sdk/go/...

### .NET

**NOT PUBLISHED YET**

To use from .NET, install using `dotnet add package`:

```bash
Expand Down
2 changes: 1 addition & 1 deletion provider/resources.go
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ func Provider() tfbridge.ProviderInfo {
"rediscloud_subscription_peerings": {Tok: tfbridge.MakeDataSource(mainPkg, mainMod, "getSubscriptionPeerings")},
},
JavaScript: &tfbridge.JavaScriptInfo{
PackageName: "@RedisLabs/pulumi-rediscloud",
PackageName: "@redislabs/pulumi-rediscloud",
// List any npm dependencies and their versions
Dependencies: map[string]string{
"@pulumi/pulumi": "^3.0.0",
Expand Down

0 comments on commit b434d83

Please sign in to comment.