@fishawack/lab-env 4.41.0 → 4.41.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/CHANGELOG.md +12 -0
- package/globals.js +4 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
## Changelog
|
|
2
2
|
|
|
3
|
+
### 4.41.1 (2025-07-24)
|
|
4
|
+
|
|
5
|
+
#### Bug Fixes
|
|
6
|
+
|
|
7
|
+
* better check for vue projects that doesnt run on non vue projects ([b674d25](https://bitbucket.org/fishawackdigital/lab-env/commits/b674d25057306bac7f231e1bd898a085df55be9b))
|
|
8
|
+
|
|
9
|
+
### 4.41.1-beta.1 (2025-07-24)
|
|
10
|
+
|
|
11
|
+
#### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* better check for vue projects that doesnt run on non vue projects ([b674d25](https://bitbucket.org/fishawackdigital/lab-env/commits/b674d25057306bac7f231e1bd898a085df55be9b))
|
|
14
|
+
|
|
3
15
|
### 4.41.0 (2025-07-24)
|
|
4
16
|
|
|
5
17
|
#### Features
|
package/globals.js
CHANGED
|
@@ -473,7 +473,10 @@ if (
|
|
|
473
473
|
}
|
|
474
474
|
|
|
475
475
|
// Copy AI instructions file
|
|
476
|
-
if (
|
|
476
|
+
if (
|
|
477
|
+
pkg?.dependencies?.["vue"] &&
|
|
478
|
+
semver.satisfies(semver.coerce(pkg.dependencies["vue"]), "3.x")
|
|
479
|
+
) {
|
|
477
480
|
const destDir = path.join(cwd, ".github/copilot");
|
|
478
481
|
if (!existsSync(destDir)) {
|
|
479
482
|
mkdirSync(destDir, { recursive: true });
|