Skip to content

Commit

Permalink
fix: everything
Browse files Browse the repository at this point in the history
  • Loading branch information
dydx-ci committed Sep 19, 2024
1 parent 54f3b78 commit fac9005
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 17 deletions.
5 changes: 0 additions & 5 deletions .github/workflows/js-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,6 @@ jobs:
- name: Run semantic-release
run: npm run release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN_WRITE }}

# - name: Publish
# run: ./scripts/publish-if-not-exists.sh
# env:
# NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN_WRITE }}

1 change: 1 addition & 0 deletions v4-client-js/.npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
!build/node_modules/@dydxprotocol/v4-proto/**/**.ts
7 changes: 0 additions & 7 deletions v4-client-js/.releaserc
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,5 @@
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm"
],
"prepare": [
{
"path": "@semantic-release/exec",
"cmd": "npm run compile"
}

]
}
2 changes: 1 addition & 1 deletion v4-client-js/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions v4-client-js/package.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
{
"name": "@dydxprotocol/v4-client-js",
"version": "1.3.6-test-release",
"version": "1.3.3",
"description": "General client library for the new dYdX system (v4 decentralized)",
"main": "build/src/index.js",
"scripts": {
"build": "rm -rf build/ && npm run compile",
"commitlint": "commitlint --edit",
"compile": "tsc --project ./tsconfig.json --showConfig",
"compile": "tsc",
"compile:watch": "npm run compile -- --watch",
"coverage": "npm run test -- --coverage",
"fix": "npm run lint -- --fix",
"lint": "eslint --ext .ts,.js .",
"prepublishOnly": "npm run compile",
"release": "semantic-release --dry-run",
"prepublishOnly": "npm run compile && ls build/node_modules/@dydxprotocol/v4-proto",
"release": "semantic-release --no-ci",
"start": "node build/src/index.js",
"test": "NODE_ENV=test jest --testPathIgnorePatterns=__tests__/modules/client/*",
"test:watch": "npm test -- --watch",
Expand Down

0 comments on commit fac9005

Please sign in to comment.