@squiz/component-cli-lib 1.5.1-alpha.4 → 1.6.1-alpha.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/.gitlab-ci.yml +4 -6
- package/CHANGELOG.md +24 -0
- package/jest.config.ts +1 -0
- package/jest.integration.config.ts +1 -0
- package/lib/index.js +1 -1
- package/lib/index.js.map +1 -1
- package/package.json +9 -9
- package/src/component-dev.ts +0 -1
- package/tsconfig.tsbuildinfo +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@squiz/component-cli-lib",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.6.1-alpha.2",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -12,12 +12,12 @@
|
|
|
12
12
|
"author": "",
|
|
13
13
|
"license": "ISC",
|
|
14
14
|
"devDependencies": {
|
|
15
|
-
"@squiz/component-lib": "1.
|
|
16
|
-
"@squiz/component-web-api-lib": "1.
|
|
17
|
-
"@squiz/dx-common-lib": "1.
|
|
18
|
-
"@squiz/dx-json-schema-lib": "1.
|
|
19
|
-
"@squiz/dx-logger-lib": "1.
|
|
20
|
-
"@squiz/virus-scanner-lib": "1.
|
|
15
|
+
"@squiz/component-lib": "1.6.1-alpha.2",
|
|
16
|
+
"@squiz/component-web-api-lib": "^1.6.0",
|
|
17
|
+
"@squiz/dx-common-lib": "^1.6.0",
|
|
18
|
+
"@squiz/dx-json-schema-lib": "^1.6.0",
|
|
19
|
+
"@squiz/dx-logger-lib": "^1.6.0",
|
|
20
|
+
"@squiz/virus-scanner-lib": "^1.6.0",
|
|
21
21
|
"@types/cli-color": "2.0.2",
|
|
22
22
|
"@types/express": "4.17.14",
|
|
23
23
|
"@types/jest": "28.1.8",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"typescript": "4.9.4"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@squiz/render-runtime-lib": "1.
|
|
35
|
+
"@squiz/render-runtime-lib": "1.6.1-alpha.2",
|
|
36
36
|
"archiver": "5.3.1",
|
|
37
37
|
"axios": "0.27.2",
|
|
38
38
|
"cli-color": "^2.0.2",
|
|
@@ -40,5 +40,5 @@
|
|
|
40
40
|
"open": "^8.4.0",
|
|
41
41
|
"supertest": "^6.2.3"
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "21266ab281fc39ecdd938739a7d26ad4093b6fa4"
|
|
44
44
|
}
|
package/src/component-dev.ts
CHANGED
|
@@ -15,7 +15,6 @@ import { JsonValidationService } from '@squiz/dx-json-schema-lib';
|
|
|
15
15
|
* startDevelopmentRender starts a dev-mode render stack for any
|
|
16
16
|
* local directory. This should start an express server on a random unused port
|
|
17
17
|
* which can be accessed for viewing the component in development.
|
|
18
|
-
*
|
|
19
18
|
* @param {string} componentPath - The directory with the component to be rendered
|
|
20
19
|
* @param {object} options - Additional configuration for the dev stack
|
|
21
20
|
* @returns a function to stop the render stack
|