@squiz/component-cli-lib 1.67.0 → 1.68.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 +17 -0
- package/jest.integration.config.ts +0 -1
- package/job-runner-lib.tgz +0 -0
- package/lib/index.js +130 -519
- package/lib/index.js.map +4 -4
- package/lib/integration-tests/helper.d.ts +7 -6
- package/lib/integration-tests/test-setup.d.ts +1 -0
- package/lib/utils.d.ts +1 -0
- package/package.json +9 -8
- package/src/component-dev-folder-structures.integration.spec.ts +1 -1
- package/src/component-dev.integration.spec.ts +1 -1
- package/src/integration-tests/service-deployment.integration.spec.ts +11 -7
- package/src/upload-component-folder.ts +4 -0
- package/src/upload-job.ts +1 -1
- package/src/utils.spec.ts +142 -8
- package/src/utils.ts +30 -3
- package/tsconfig.json +2 -0
- package/tsconfig.tsbuildinfo +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 1.68.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 1187eec: manual bump of dx-common-lib version
|
|
8
|
+
- Updated dependencies [1187eec]
|
|
9
|
+
- Updated dependencies [0afbb64]
|
|
10
|
+
- @squiz/edge-dev-render-runtime-lib@2.1.1
|
|
11
|
+
- @squiz/runtime-sandbox-node@1.64.2
|
|
12
|
+
- @squiz/render-runtime-lib@1.76.0
|
|
13
|
+
|
|
14
|
+
## 1.68.0
|
|
15
|
+
|
|
16
|
+
### Minor Changes
|
|
17
|
+
|
|
18
|
+
- 2338db0: add feature flag to make cmp service "edge components" only
|
|
19
|
+
|
|
3
20
|
## 1.67.0
|
|
4
21
|
|
|
5
22
|
### Minor Changes
|
|
@@ -13,7 +13,6 @@ process.env.TENANT_ID ??= 'my-tenant';
|
|
|
13
13
|
// Sync object
|
|
14
14
|
const config: Config = {
|
|
15
15
|
...defaultIntegrationConfig,
|
|
16
|
-
testPathIgnorePatterns: ['<rootDir>/lib/', '<rootDir>/cdk.out/', 'test.ts'],
|
|
17
16
|
maxWorkers: 1,
|
|
18
17
|
|
|
19
18
|
setupFiles: ['./src/integration-tests/test-setup.ts'],
|
|
Binary file
|