@eth-optimism/tokenlist 8.3.70 → 8.3.72

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@eth-optimism/tokenlist",
3
3
  "description": "[Optimism] token list",
4
- "version": "8.3.70",
4
+ "version": "8.3.72",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
7
7
  "types": "dist/index.d.ts",
@@ -29,14 +29,14 @@
29
29
  "scripts": {
30
30
  "validate": "tsx ./bin/cli.ts validate",
31
31
  "generate": "tsx ./bin/cli.ts generate",
32
- "generate:ci": "yarn generate --datadir ./data --outfile optimism.tokenlist.json",
33
- "build": "yarn tsup",
34
- "build:ci": "yarn generate:ci && yarn tsup --dts",
35
- "release": "yarn build:ci && npm publish",
32
+ "generate:ci": "pnpm generate --datadir ./data --outfile optimism.tokenlist.json",
33
+ "build": "tsup",
34
+ "build:ci": "pnpm generate:ci && pnpm tsup --dts",
35
+ "release": "pnpm build:ci && npm publish",
36
36
  "test": "jest --detectOpenHandles",
37
37
  "lint:check": "eslint . --max-warnings=0",
38
38
  "lint:fix": "eslint --fix .",
39
- "lint": "yarn lint:fix && yarn lint:check",
39
+ "lint": "pnpm lint:fix && pnpm lint:check",
40
40
  "start-bot": "tsx ./src/bot.ts",
41
41
  "typecheck": "tsc -p ./tsconfig.json --noEmit"
42
42
  },