@ape.swap/bonds-sdk 1.0.41 → 1.0.42

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/dist/index.d.ts CHANGED
@@ -1 +1,3 @@
1
- import './index.css';
1
+ import MyComponent from './components/MyComponent';
2
+ import Bonds from './components/Bonds';
3
+ export { MyComponent, Bonds };
package/dist/index.js CHANGED
@@ -1,7 +1,4 @@
1
- import { jsx as _jsx } from "react/jsx-runtime";
2
- import React from 'react';
3
- import ReactDOM from 'react-dom/client';
4
- import './index.css';
5
- import App from './App';
6
- var root = ReactDOM.createRoot(document.getElementById('root'));
7
- root.render(_jsx(React.StrictMode, { children: _jsx(App, {}) }));
1
+ // src/index.ts
2
+ import MyComponent from './components/MyComponent';
3
+ import Bonds from './components/Bonds';
4
+ export { MyComponent, Bonds };
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": "1.0.41",
6
+ "version": "1.0.42",
7
7
  "main": "dist/index.js",
8
8
  "module": "dist/index.es.js",
9
9
  "types": "dist/index.d.ts",