codify-plugin-lib 1.0.182-beta23 → 1.0.182-beta24

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.
@@ -5,6 +5,7 @@ export function splitUserConfig(config) {
5
5
  type: config.type,
6
6
  ...(config.name ? { name: config.name } : {}),
7
7
  ...(config.dependsOn ? { dependsOn: config.dependsOn } : {}),
8
+ ...(config.os ? { os: config.os } : {}),
8
9
  };
9
10
  // eslint-disable-next-line @typescript-eslint/no-unused-vars
10
11
  const { type, name, dependsOn, ...parameters } = config;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codify-plugin-lib",
3
- "version": "1.0.182-beta23",
3
+ "version": "1.0.182-beta24",
4
4
  "description": "Library plugin library",
5
5
  "main": "dist/index.js",
6
6
  "typings": "dist/index.d.ts",
@@ -9,6 +9,7 @@ export function splitUserConfig<T extends StringIndexedObject>(
9
9
  type: config.type,
10
10
  ...(config.name ? { name: config.name } : {}),
11
11
  ...(config.dependsOn ? { dependsOn: config.dependsOn } : {}),
12
+ ...(config.os ? { os: config.os } : {}),
12
13
  };
13
14
 
14
15
  // eslint-disable-next-line @typescript-eslint/no-unused-vars
@@ -8,6 +8,7 @@ describe('Utils tests', () => {
8
8
  type: 'type',
9
9
  name: 'name',
10
10
  dependsOn: ['a', 'b', 'c'],
11
+ os: ['linux'],
11
12
  propA: 'propA',
12
13
  propB: 'propB',
13
14
  propC: 'propC',