@replit/protocol 0.4.14 → 0.4.15
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/package.json +1 -1
- package/#README.md# +0 -36
package/package.json
CHANGED
package/#README.md#
DELETED
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
# Developing
|
|
2
|
-
* Change goval/api/types.proto
|
|
3
|
-
* In this directory:
|
|
4
|
-
* `npm run build`
|
|
5
|
-
* Change repl-it-web/package.json:
|
|
6
|
-
```
|
|
7
|
-
"@replit/protocol": "^0.4.9",
|
|
8
|
-
```
|
|
9
|
-
to
|
|
10
|
-
```
|
|
11
|
-
"@replit/protocol": "file:../goval/api/npm",
|
|
12
|
-
```
|
|
13
|
-
* Also change repl-it-web/shared/package.json:
|
|
14
|
-
```
|
|
15
|
-
"@replit/protocol": "^0.4.9",
|
|
16
|
-
```
|
|
17
|
-
to
|
|
18
|
-
```
|
|
19
|
-
"@replit/protocol": "file:../../goval/api/npm",
|
|
20
|
-
```
|
|
21
|
-
|
|
22
|
-
# Publishing
|
|
23
|
-
|
|
24
|
-
After your `.proto` changes are merged:
|
|
25
|
-
- create a new branch
|
|
26
|
-
- cd into `api/npm`
|
|
27
|
-
- `npm --no-git-tag-version version <new-version>`
|
|
28
|
-
- submit a pull request
|
|
29
|
-
- merged
|
|
30
|
-
- pull latest `main`
|
|
31
|
-
- cd into `api/npm`
|
|
32
|
-
- `npm login` if you're not authed (will need to be in our npm org)
|
|
33
|
-
- `npm publish`
|
|
34
|
-
- it will run a build
|
|
35
|
-
- you be asked for 2fa
|
|
36
|
-
- package will be published
|