@layerzerolabs/tsup-config-next 3.0.39 → 3.0.40

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @layerzerolabs/tsup-config-next
2
2
 
3
+ ## 3.0.40
4
+
5
+ ### Patch Changes
6
+
7
+ - 4e53aef: redeploy aptos testnet
8
+
3
9
  ## 3.0.39
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@layerzerolabs/tsup-config-next",
3
- "version": "3.0.39",
3
+ "version": "3.0.40",
4
4
  "type": "commonjs",
5
5
  "exports": {
6
6
  "types": "./dist/index.d.ts",
@@ -23,7 +23,7 @@
23
23
  "tsup": "^8.3.5"
24
24
  },
25
25
  "devDependencies": {
26
- "@layerzerolabs/typescript-config-next": "^3.0.39",
26
+ "@layerzerolabs/typescript-config-next": "^3.0.40",
27
27
  "rimraf": "^5.0.5",
28
28
  "typescript": "~5.2.2"
29
29
  },
package/turbo.json ADDED
@@ -0,0 +1,18 @@
1
+ {
2
+ "extends": ["//"],
3
+ "tasks": {
4
+ "build": {
5
+ "dependsOn": ["^build"],
6
+ "outputs": ["dist/**"],
7
+ "inputs": ["src/**", "tsconfig.json", "tsup.config.ts"],
8
+ "cache": true
9
+ },
10
+ "test": {
11
+ "dependsOn": ["build"],
12
+ // No need to cache test outputs
13
+ "outputs": [],
14
+ "inputs": ["tests/**", "jest.config.*"],
15
+ "cache": true
16
+ }
17
+ }
18
+ }