@vibe-forge/workspace-assets 0.10.1-alpha.1 → 0.11.0

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
- import process from 'node:process'
2
1
  import { join } from 'node:path'
2
+ import process from 'node:process'
3
3
 
4
4
  import { describe, expect, it } from 'vitest'
5
5
 
@@ -479,19 +479,23 @@ describe('resolvePromptAssetSelection', () => {
479
479
 
480
480
  await writeDocument(
481
481
  join(workspace, '.ai/plugins/demo/.vf-plugin.json'),
482
- JSON.stringify({
483
- version: 1,
484
- adapter: 'claude',
485
- name: 'demo',
486
- scope: 'demo',
487
- installedAt: new Date().toISOString(),
488
- source: {
489
- type: 'path',
490
- path: './demo'
482
+ JSON.stringify(
483
+ {
484
+ version: 1,
485
+ adapter: 'claude',
486
+ name: 'demo',
487
+ scope: 'demo',
488
+ installedAt: new Date().toISOString(),
489
+ source: {
490
+ type: 'path',
491
+ path: './demo'
492
+ },
493
+ nativePluginPath: 'native',
494
+ vibeForgePluginPath: 'vibe-forge'
491
495
  },
492
- nativePluginPath: 'native',
493
- vibeForgePluginPath: 'vibe-forge'
494
- }, null, 2)
496
+ null,
497
+ 2
498
+ )
495
499
  )
496
500
  await writeDocument(
497
501
  join(workspace, '.ai/plugins/demo/vibe-forge/skills/research/SKILL.md'),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vibe-forge/workspace-assets",
3
- "version": "0.10.1-alpha.1",
3
+ "version": "0.11.0",
4
4
  "description": "Workspace asset resolution and adapter asset planning for Vibe Forge",
5
5
  "imports": {
6
6
  "#~/*.js": {
@@ -29,10 +29,10 @@
29
29
  "fast-glob": "^3.3.3",
30
30
  "front-matter": "^4.0.2",
31
31
  "js-yaml": "^4.1.1",
32
- "@vibe-forge/config": "^0.10.0",
33
- "@vibe-forge/types": "^0.10.1",
34
- "@vibe-forge/utils": "^0.10.1",
35
- "@vibe-forge/definition-core": "^0.10.0"
32
+ "@vibe-forge/definition-core": "^0.11.0",
33
+ "@vibe-forge/config": "^0.11.0",
34
+ "@vibe-forge/types": "^0.11.0",
35
+ "@vibe-forge/utils": "^0.11.0"
36
36
  },
37
37
  "devDependencies": {
38
38
  "@types/js-yaml": "^4.0.9"