@notebook-intelligence/notebook-intelligence 1.2.3 → 1.2.5

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/lib/index.d.ts CHANGED
@@ -4,4 +4,5 @@ import { INotebookIntelligence } from './tokens';
4
4
  * Initialization data for the @notebook-intelligence/notebook-intelligence extension.
5
5
  */
6
6
  declare const plugin: JupyterFrontEndPlugin<INotebookIntelligence>;
7
+ export * from './tokens';
7
8
  export default plugin;
package/lib/index.js CHANGED
@@ -1075,4 +1075,5 @@ const plugin = {
1075
1075
  return extensionService;
1076
1076
  }
1077
1077
  };
1078
+ export * from './tokens';
1078
1079
  export default plugin;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@notebook-intelligence/notebook-intelligence",
3
- "version": "1.2.3",
3
+ "version": "1.2.5",
4
4
  "description": "AI coding assistant for JupyterLab",
5
5
  "keywords": [
6
6
  "AI",
@@ -123,7 +123,12 @@
123
123
  "extension": true,
124
124
  "outputDir": "notebook_intelligence/labextension",
125
125
  "schemaDir": "schema",
126
- "webpackConfig": "./webpack.config.js"
126
+ "webpackConfig": "./webpack.config.js",
127
+ "sharedPackages": {
128
+ "@notebook-intelligence/notebook-intelligence": {
129
+ "singleton": true
130
+ }
131
+ }
127
132
  },
128
133
  "eslintIgnore": [
129
134
  "node_modules",
package/src/index.ts CHANGED
@@ -1395,4 +1395,6 @@ const plugin: JupyterFrontEndPlugin<INotebookIntelligence> = {
1395
1395
  }
1396
1396
  };
1397
1397
 
1398
+ export * from './tokens';
1399
+
1398
1400
  export default plugin;