@pancakeswap/tokens 0.7.7 → 0.7.8

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.
@@ -1,5 +1,5 @@
1
1
 
2
- > @pancakeswap/tokens@0.7.7 build /home/runner/work/pancake-frontend/pancake-frontend/packages/tokens
2
+ > @pancakeswap/tokens@0.7.8 build /home/runner/work/pancake-frontend/pancake-frontend/packages/tokens
3
3
  > tsup
4
4
 
5
5
  CLI Building entry: {"index":"./src/index.ts"}
@@ -10,7 +10,7 @@ CLI Target: es2020
10
10
  CLI Cleaning output folder
11
11
  ESM Build start
12
12
  CJS Build start
13
- ESM dist/index.mjs 127.13 KB
14
- ESM ⚡️ Build success in 933ms
15
13
  CJS dist/index.js 137.25 KB
16
- CJS ⚡️ Build success in 933ms
14
+ CJS ⚡️ Build success in 898ms
15
+ ESM dist/index.mjs 127.13 KB
16
+ ESM ⚡️ Build success in 901ms
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @pancakeswap/tokens
2
2
 
3
+ ## 0.7.8
4
+
5
+ ### Patch Changes
6
+
7
+ - 5b6d71a: Remove incorrect dependency
8
+
3
9
  ## 0.7.7
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@pancakeswap/tokens",
3
3
  "license": "MIT",
4
- "version": "0.7.7",
4
+ "version": "0.7.8",
5
5
  "description": "Tokens for pancakeswap",
6
6
  "main": "./dist/index.js",
7
7
  "module": "./dist/index.mjs",
@@ -10,11 +10,11 @@
10
10
  "dependencies": {
11
11
  "@pancakeswap/chains": "0.6.0",
12
12
  "@pancakeswap/sdk": "5.8.16",
13
- "@pancakeswap/solana-core-sdk": "0.1.139-alpha",
14
13
  "@pancakeswap/token-lists": "0.0.16"
15
14
  },
16
15
  "devDependencies": {
17
16
  "tsup": "^6.7.0",
17
+ "@pancakeswap/solana-core-sdk": "0.1.139-alpha",
18
18
  "@pancakeswap/utils": "8.0.0"
19
19
  },
20
20
  "exports": {
package/tsup.config.ts CHANGED
@@ -7,7 +7,7 @@ export default defineConfig((options) => {
7
7
  index: './src/index.ts',
8
8
  },
9
9
  format: ['esm', 'cjs'],
10
- noExternal: ['@pancakeswap/utils'],
10
+ noExternal: ['@pancakeswap/utils', '@pancakeswap/solana-core-sdk'],
11
11
  dts: false,
12
12
  clean: !options.watch,
13
13
  treeshake: true,