@ape.swap/bonds-sdk 5.1.1-test.10 → 5.1.1-test.12

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.
@@ -3,6 +3,7 @@ const styles = {
3
3
  width: '100%',
4
4
  flexDirection: 'column',
5
5
  mt: '15px',
6
+ maxWidth: '1150px',
6
7
  }};
7
8
 
8
9
  export { styles };
@@ -1 +1 @@
1
- {"version":3,"file":"styles.js","sources":["../../../src/views/ProjectView/styles.ts"],"sourcesContent":["import { ThemeUIStyleObject } from 'theme-ui'\n\nexport const styles: Record<'mainViewContainer' | 'buyContainer', ThemeUIStyleObject> = {\n mainViewContainer: {\n width: '100%',\n flexDirection: 'column',\n mt: '15px',\n },\n buyContainer: {\n width: ['100%', '100%', '100%', '50%'],\n flexDirection: 'column',\n background: 'white2',\n borderRadius: 'normal',\n p: '20px',\n mr: ['unset', 'unset', 'unset', '10px'],\n },\n}\n"],"names":[],"mappings":"AAEO,MAAM,MAAM,GAAqE;AACtF,IAAA,iBAAiB,EAAE;AACjB,QAAA,KAAK,EAAE,MAAM;AACb,QAAA,aAAa,EAAE,QAAQ;AACvB,QAAA,EAAE,EAAE,MAAM;AACX;;;;"}
1
+ {"version":3,"file":"styles.js","sources":["../../../src/views/ProjectView/styles.ts"],"sourcesContent":["import { ThemeUIStyleObject } from 'theme-ui'\n\nexport const styles: Record<'mainViewContainer' | 'buyContainer', ThemeUIStyleObject> = {\n mainViewContainer: {\n width: '100%',\n flexDirection: 'column',\n mt: '15px',\n maxWidth: '1150px',\n },\n buyContainer: {\n width: ['100%', '100%', '100%', '50%'],\n flexDirection: 'column',\n background: 'white2',\n borderRadius: 'normal',\n p: '20px',\n mr: ['unset', 'unset', 'unset', '10px'],\n },\n}\n"],"names":[],"mappings":"AAEO,MAAM,MAAM,GAAqE;AACtF,IAAA,iBAAiB,EAAE;AACjB,QAAA,KAAK,EAAE,MAAM;AACb,QAAA,aAAa,EAAE,QAAQ;AACvB,QAAA,EAAE,EAAE,MAAM;AACV,QAAA,QAAQ,EAAE,QAAQ;AACnB;;;;"}
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "Ape Bond SDK",
4
4
  "author": "Ape Bond",
5
5
  "license": "MIT",
6
- "version": "5.1.1-test.10",
6
+ "version": "5.1.1-test.12",
7
7
  "module": "dist/main.js",
8
8
  "type": "module",
9
9
  "types": "dist/main.d.ts",
@@ -77,7 +77,8 @@
77
77
  ],
78
78
  "scripts": {
79
79
  "prepublishOnly": "npm run build",
80
- "build": "rimraf dist/ && rollup -c && npm run compile-scss",
80
+ "build": "node scripts/build.mjs",
81
+ "build:legacy": "rimraf dist/ && rollup -c && npm run compile-scss",
81
82
  "build:vite": "vite build --outDir vite-build",
82
83
  "dev": "vite",
83
84
  "compile-scss": "sass src/scss/index.scss dist/styles.css --no-source-map",