Skip to content

Commit a52f61e

Browse files
authored
Merge pull request #3160 from pyth-network/bduran/dual-publish
Bduran/dual publish
2 parents 3bb18ac + f4ca91a commit a52f61e

File tree

600 files changed

+11211
-33418
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

600 files changed

+11211
-33418
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,5 @@ __pycache__
2525
.turbo/
2626
.cursorrules
2727
.corepack
28-
justfile
28+
justfile
29+
dist/

apps/api-reference/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
.env*.local
2+
3+
dist/

apps/api-reference/.prettierignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,9 @@ node_modules/
66
.env*.local
77
.env
88
.DS_Store
9+
dist/
10+
lib/
11+
build/
12+
node_modules/
13+
package.json
14+
tsconfig*.json

apps/api-reference/jest.config.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
export { nextjs as default } from "@cprussin/jest-config/next";
1+
import { defineJestConfigForNextJs } from "@pythnetwork/jest-config/define-next-config";
2+
3+
export default defineJestConfigForNextJs();

apps/api-reference/package.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"private": true,
55
"type": "module",
66
"engines": {
7-
"node": "22"
7+
"node": ">=22.14.0"
88
},
99
"scripts": {
1010
"build:vercel": "next build",
@@ -47,7 +47,7 @@
4747
"devDependencies": {
4848
"@axe-core/react": "catalog:",
4949
"@cprussin/eslint-config": "catalog:",
50-
"@cprussin/jest-config": "catalog:",
50+
"@pythnetwork/jest-config": "workspace:",
5151
"@cprussin/prettier-config": "catalog:",
5252
"@cprussin/tsconfig": "catalog:",
5353
"@svgr/webpack": "catalog:",
@@ -62,7 +62,6 @@
6262
"postcss": "catalog:",
6363
"prettier": "catalog:",
6464
"tailwindcss": "catalog:",
65-
"typescript": "catalog:",
6665
"vercel": "catalog:"
6766
}
68-
}
67+
}

apps/argus/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,5 @@
22
*config.yaml
33
*secret*
44
*private-key*
5+
6+
dist/

apps/developer-hub/.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
.env*.local
2-
.source
2+
.source
3+
dist/

apps/developer-hub/.prettierignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,9 @@ node_modules/
55
.env*.local
66
.env
77
.DS_Store
8+
dist/
9+
lib/
10+
build/
11+
node_modules/
12+
package.json
13+
tsconfig*.json

apps/developer-hub/jest.config.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
export { nextjs as default } from "@cprussin/jest-config/next";
1+
import { defineJestConfigForNextJs } from "@pythnetwork/jest-config/define-next-config";
2+
3+
export default defineJestConfigForNextJs();

apps/developer-hub/package.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"private": true,
55
"type": "module",
66
"engines": {
7-
"node": "22"
7+
"node": ">=22.14.0"
88
},
99
"scripts": {
1010
"build": "next build",
@@ -51,7 +51,7 @@
5151
},
5252
"devDependencies": {
5353
"@cprussin/eslint-config": "catalog:",
54-
"@cprussin/jest-config": "catalog:",
54+
"@pythnetwork/jest-config": "workspace:",
5555
"@cprussin/prettier-config": "catalog:",
5656
"@cprussin/tsconfig": "catalog:",
5757
"@svgr/webpack": "catalog:",
@@ -70,7 +70,6 @@
7070
"stylelint": "catalog:",
7171
"stylelint-config-standard-scss": "catalog:",
7272
"tailwindcss": "^4.1.6",
73-
"typescript": "catalog:",
7473
"vercel": "catalog:"
7574
}
76-
}
75+
}

0 commit comments

Comments
 (0)