@mimicprotocol/lib-ts 0.0.1-rc.39 → 0.0.1-rc.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,12 @@
1
1
  # @mimicprotocol/lib-ts
2
2
 
3
+ ## 0.0.1-rc.40
4
+
5
+ ### Patch Changes
6
+
7
+ - 32adf4f: Fix ERR_UNSUPPORTED_NODE_MODULES_TYPE_STRIPPING for new node versions
8
+ - 2bbe278: update eslint config
9
+
3
10
  ## 0.0.1-rc.39
4
11
 
5
12
  ### Patch Changes
package/constants.d.ts ADDED
@@ -0,0 +1 @@
1
+ export declare const RUNNER_TARGET_VERSION: string
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mimicprotocol/lib-ts",
3
- "version": "0.0.1-rc.39",
3
+ "version": "0.0.1-rc.40",
4
4
  "license": "GPL-3.0",
5
5
  "private": false,
6
6
  "type": "module",
@@ -12,12 +12,17 @@
12
12
  "files": [
13
13
  "src",
14
14
  "index.ts",
15
- "constants.ts",
15
+ "constants.js",
16
+ "constants.d.ts",
16
17
  "asconfig.json"
17
18
  ],
18
19
  "exports": {
19
20
  ".": "./index.ts",
20
- "./constants": "./constants.ts"
21
+ "./constants": {
22
+ "import": "./constants.js",
23
+ "require": "./constants.js",
24
+ "types": "./constants.d.ts"
25
+ }
21
26
  },
22
27
  "devDependencies": {
23
28
  "@as-pect/cli": "8.1.0",
@@ -25,7 +30,7 @@
25
30
  },
26
31
  "dependencies": {
27
32
  "as-base58": "^0.1.1",
28
- "eslint-config-mimic": "^0.0.3",
33
+ "eslint-config-mimic": "^0.0.4",
29
34
  "json-as": "1.1.7",
30
35
  "visitor-as": "0.11.4"
31
36
  },
@@ -1,5 +1,3 @@
1
- /* eslint-disable no-secrets/no-secrets */
2
-
3
1
  export const NULL_ADDRESS = '0x0000000000000000000000000000000000000000'
4
2
  export const EVM_NATIVE_ADDRESS = '0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee'
5
3
  export const SVM_NATIVE_ADDRESS = 'Nativeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee'
File without changes