@knowlearning/agents 0.1.0 → 0.1.1

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@knowlearning/agents",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "API for embedding applications in KnowLearning systems.",
5
5
  "main": "package/node.js",
6
6
  "browser": "package/browser.js",
@@ -1,4 +1,4 @@
1
- import { createApp, watchEffect } from 'npm/unscoped/vue/3.2.39'
1
+ import { createApp, watchEffect } from 'vue'
2
2
  import content from "./content.vue"
3
3
 
4
4
  // TODO: probably want to make this a util, and better fleshed out (with white instead of blacklist)
@@ -0,0 +1,4 @@
1
+ // This shim is necessary to specify the vue import for our infrastructure
2
+ import 'npm/unscoped/vue/3.2.39'
3
+
4
+ export { default } from './component.js'