@linear/sdk 65.1.0 → 66.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2019 Linear
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -44,7 +44,7 @@ The Linear Client uses custom [GraphQL Code Generator](https://graphql-code-gene
44
44
 
45
45
  ### Structure
46
46
 
47
- This monorepo uses `yarn workspaces` and `lerna` to publish packages.
47
+ This monorepo uses `pnpm` workspaces to manage and publish packages.
48
48
 
49
49
  Generated code uses file prefix `_generated` and should never be manually updated.
50
50
 
@@ -57,21 +57,23 @@ Open source packages:
57
57
 
58
58
  ### Get Started
59
59
 
60
+ Make sure you have Node 18+ and Corepack enabled (`corepack enable`).
61
+
60
62
  ```shell
61
63
  # install dependencies
62
- yarn
64
+ pnpm install
63
65
 
64
66
  # build all packages
65
- yarn build
67
+ pnpm build
66
68
 
67
69
  # test all packages
68
- yarn test
70
+ pnpm test
69
71
 
70
72
  # update the schema from the production API
71
- yarn schema
73
+ pnpm schema
72
74
 
73
75
  # create changeset for generating CHANGELOG.md
74
- yarn changeset
76
+ pnpm changeset
75
77
  ```
76
78
 
77
79
  ### Plugin Flow