@fishawack/lab-env 5.3.0-beta.1 → 5.3.0-beta.2
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 +6 -0
- package/core/1/CHANGELOG.md +12 -0
- package/core/1/Dockerfile +3 -0
- package/core/1/docker-compose.yml +1 -0
- package/core/1/package.json +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
## Changelog
|
|
2
2
|
|
|
3
|
+
### 5.3.0-beta.2 (2026-02-20)
|
|
4
|
+
|
|
5
|
+
#### Build Updates
|
|
6
|
+
|
|
7
|
+
* **core/1:** Bumped lab-env-core-1 ([e3e151a](https://bitbucket.org/fishawackdigital/lab-env/commits/e3e151aacb75c360f36f7b8303966a99f1c202d0))
|
|
8
|
+
|
|
3
9
|
### 5.3.0-beta.1 (2026-02-04)
|
|
4
10
|
|
|
5
11
|
#### Features
|
package/core/1/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
## Changelog
|
|
2
2
|
|
|
3
|
+
### 1.10.0 (2026-02-20)
|
|
4
|
+
|
|
5
|
+
#### Features
|
|
6
|
+
|
|
7
|
+
* added support for synk globally installed packages ([2c70875](https://bitbucket.org/fishawackdigital/lab-env-core-1/commits/2c70875cd811cb325b9f0fe6f140d699b13c1bc2))
|
|
8
|
+
|
|
9
|
+
### 1.10.0-beta.1 (2026-02-20)
|
|
10
|
+
|
|
11
|
+
#### Features
|
|
12
|
+
|
|
13
|
+
* added support for synk globally installed packages ([2c70875](https://bitbucket.org/fishawackdigital/lab-env-core-1/commits/2c70875cd811cb325b9f0fe6f140d699b13c1bc2))
|
|
14
|
+
|
|
3
15
|
### 1.9.1 (2025-10-29)
|
|
4
16
|
|
|
5
17
|
#### Bug Fixes
|
package/core/1/Dockerfile
CHANGED
|
@@ -55,6 +55,9 @@ RUN npm install are-you-es5 -g
|
|
|
55
55
|
# Install git branch fetcher
|
|
56
56
|
RUN npm install git-branch -g
|
|
57
57
|
|
|
58
|
+
# Install snyk package
|
|
59
|
+
RUN npm install snyk snyk-to-html -g
|
|
60
|
+
|
|
58
61
|
# Link root global node_modules to ~/.node_modules
|
|
59
62
|
RUN ln -s /usr/local/lib/node_modules/ /home/node/.node_modules
|
|
60
63
|
|
package/core/1/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "core",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.10.0",
|
|
4
4
|
"description": "lab-env docker config for the @fishawack/core/1 npm module",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"setup": "ln -sfn ../../.commitlintrc.json .commitlintrc.json && ln -sfn ../../.editorconfig .editorconfig && ln -sfn ../../.prettierignore .prettierignore && ln -sfn ../../.husky/ .husky && husky &>/dev/null || true",
|