@o3r/stylelint-plugin 10.1.0-prerelease.26 → 10.1.0-prerelease.28

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@o3r/stylelint-plugin",
3
- "version": "10.1.0-prerelease.26",
3
+ "version": "10.1.0-prerelease.28",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -39,9 +39,9 @@
39
39
  "@compodoc/compodoc": "^1.1.19",
40
40
  "@nx/eslint-plugin": "~18.0.2",
41
41
  "@nx/jest": "~18.0.2",
42
- "@o3r/build-helpers": "^10.1.0-prerelease.26",
43
- "@o3r/eslint-config-otter": "^10.1.0-prerelease.26",
44
- "@o3r/eslint-plugin": "^10.1.0-prerelease.26",
42
+ "@o3r/build-helpers": "^10.1.0-prerelease.28",
43
+ "@o3r/eslint-config-otter": "^10.1.0-prerelease.28",
44
+ "@o3r/eslint-plugin": "^10.1.0-prerelease.28",
45
45
  "@stylistic/eslint-plugin-ts": "^1.5.4",
46
46
  "@types/jest": "~29.5.2",
47
47
  "@types/node": "^20.0.0",
@@ -13,7 +13,7 @@ function ngAddFn(options) {
13
13
  return (tree) => {
14
14
  return (0, schematics_1.setupDependencies)({
15
15
  projectName: options.projectName,
16
- dependencies: (0, schematics_1.getPackageInstallConfig)(packageJsonPath, tree, options.projectName, true)
16
+ dependencies: (0, schematics_1.getPackageInstallConfig)(packageJsonPath, tree, options.projectName, true, !!options.exactO3rVersion)
17
17
  });
18
18
  };
19
19
  }
@@ -1,5 +1,8 @@
1
- export interface NgAddSchematicsSchema {
1
+ import type { SchematicOptionObject } from '@o3r/schematics';
2
+ export interface NgAddSchematicsSchema extends SchematicOptionObject {
2
3
  /** Project name */
3
4
  projectName?: string | undefined;
5
+ /** Use a pinned version for otter packages */
6
+ exactO3rVersion?: boolean;
4
7
  }
5
8
  //# sourceMappingURL=schema.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../schematics/ng-add/schema.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,qBAAqB;IACpC,mBAAmB;IACnB,WAAW,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;CAClC"}
1
+ {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../schematics/ng-add/schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,iBAAiB,CAAC;AAE7D,MAAM,WAAW,qBAAsB,SAAQ,qBAAqB;IAClE,mBAAmB;IACnB,WAAW,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IACjC,8CAA8C;IAC9C,eAAe,CAAC,EAAE,OAAO,CAAC;CAC3B"}
@@ -10,6 +10,11 @@
10
10
  "$default": {
11
11
  "$source": "projectName"
12
12
  }
13
+ },
14
+ "exactO3rVersion": {
15
+ "type": "boolean",
16
+ "description": "Use a pinned version for otter packages",
17
+ "default": false
13
18
  }
14
19
  },
15
20
  "additionalProperties": true,