Skip to content

Commit

Permalink
address feedbacks
Browse files Browse the repository at this point in the history
  • Loading branch information
aramikm committed Nov 20, 2024
1 parent a2cd12d commit bff3763
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 862 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1118,7 +1118,7 @@ jobs:
- name: Release Candidate on NPM
if: env.TEST_RUN != 'true' &&
steps.is-full-release.outputs.is-full-release != 'true'
run: npm publish --access public
run: npm publish --tag next --access public
working-directory: ./js/schemas/dist
env:
NODE_AUTH_TOKEN: ${{secrets.NODE_AUTH_TOKEN}}
2 changes: 1 addition & 1 deletion js/schemas/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ After importing, any of the following **Maps** can be used to fetch desired sche

Here is an example of a schema info object

```json
```javascript
{
id: 7,
namespace: 'dsnp',
Expand Down
8 changes: 6 additions & 2 deletions js/schemas/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
import './data';
import './schemas';
import * as data from './data';
import * as schemas from './schemas';

export * from './data';
export * from './schemas';
export default { ...data, ...schemas };
Loading

0 comments on commit bff3763

Please sign in to comment.