@alexaegis/standard-version 0.6.1 → 0.6.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.
@@ -11,4 +11,3 @@ export declare const createStandardVersionConfig: () => {
11
11
  };
12
12
  }[];
13
13
  };
14
- //# sourceMappingURL=config.d.ts.map
package/index.d.ts CHANGED
@@ -1,3 +1,2 @@
1
1
  export { createStandardVersionConfig } from './config/config.js';
2
2
  export { collectPackages } from './workspace/collect-packages.js';
3
- //# sourceMappingURL=index.d.ts.map
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@alexaegis/standard-version",
3
3
  "description": "Standard version",
4
- "version": "0.6.1",
4
+ "version": "0.6.2",
5
5
  "license": "MIT",
6
6
  "private": false,
7
7
  "archetype": {
@@ -51,22 +51,22 @@
51
51
  "./readme": "./readme.md"
52
52
  },
53
53
  "dependencies": {
54
- "@alexaegis/coverage-tools": "^0.5.0",
55
- "@alexaegis/workspace-tools": "^0.5.0",
54
+ "@alexaegis/coverage-tools": "^0.5.2",
55
+ "@alexaegis/workspace-tools": "^0.5.2",
56
56
  "glob": "^10.3.3",
57
57
  "js-yaml": "^4.1.0"
58
58
  },
59
59
  "devDependencies": {
60
- "@alexaegis/eslint-config-vitest": "^0.6.1",
61
- "@alexaegis/ts": "^0.6.1",
62
- "@alexaegis/vite": "^0.6.1",
63
- "@alexaegis/vitest": "^0.6.1",
60
+ "@alexaegis/eslint-config-vitest": "^0.6.2",
61
+ "@alexaegis/ts": "^0.6.2",
62
+ "@alexaegis/vite": "^0.6.2",
63
+ "@alexaegis/vitest": "^0.6.2",
64
64
  "@types/js-yaml": "^4.0.5",
65
- "@types/node": "^20.4.4",
66
- "publint": "^0.1.16",
65
+ "@types/node": "^20.4.5",
66
+ "publint": "^0.2.0",
67
67
  "typescript": "^5.1.6",
68
- "vite": "^4.4.7",
69
- "vitest": "^0.33.0"
68
+ "vite": "^4.4.8",
69
+ "vitest": "^0.34.1"
70
70
  },
71
71
  "scripts": {
72
72
  "build": "turbo run build-lib_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/standard-version",
@@ -76,7 +76,7 @@
76
76
  "lint:es": "turbo run lint:es_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/standard-version",
77
77
  "lint:es_": "eslint --max-warnings=0 --fix --no-error-on-unmatched-pattern .",
78
78
  "lint:format": "turbo run lint:format_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/standard-version",
79
- "lint:format_": "prettier --cache-location .cache/prettier --plugin prettier-plugin-svelte --plugin prettier-plugin-tailwindcss --check .",
79
+ "lint:format_": "prettier --cache-location .cache/prettier --check .",
80
80
  "lint:md": "turbo run lint:md_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/standard-version",
81
81
  "lint:md_": "remark --frail --no-stdout --silently-ignore .",
82
82
  "lint:tsc": "turbo run lint:tsc_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/standard-version",
@@ -85,7 +85,7 @@
85
85
  "publint_": "publint dist",
86
86
  "all": "BUILD_REASON='publish' turbo run all_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/standard-version",
87
87
  "format": "turbo run format_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/standard-version",
88
- "format_": "prettier --cache-location .cache/prettier --plugin prettier-plugin-svelte --plugin prettier-plugin-tailwindcss --write .",
88
+ "format_": "prettier --cache-location .cache/prettier --write .",
89
89
  "test": "turbo run test_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/standard-version",
90
90
  "test_": "vitest --passWithNoTests --coverage --run",
91
91
  "test:watch": "vitest --passWithNoTests --coverage"
package/readme.md CHANGED
@@ -12,13 +12,13 @@ functions had to be reimplemented, albeit in a much simpler form.
12
12
  ## Installation
13
13
 
14
14
  ```sh
15
- npm i @alexaegis/standard-version@0.6.1
15
+ npm i @alexaegis/standard-version@0.6.2
16
16
  ```
17
17
 
18
18
  ```json
19
19
  {
20
20
  "dependencies": {
21
- "@alexaegis/standard-version": "^0.6.1"
21
+ "@alexaegis/standard-version": "^0.6.2"
22
22
  }
23
23
  }
24
24
  ```
@@ -11,4 +11,3 @@ export declare const collectPackages: () => {
11
11
  workspacePackage: WorkspacePackage;
12
12
  subPackages: WorkspacePackage[];
13
13
  };
14
- //# sourceMappingURL=collect-packages.d.ts.map
@@ -11,4 +11,3 @@ export declare const createGenericUpdater: (packages: WorkspacePackage[]) => {
11
11
  readVersion: (contents: string) => string;
12
12
  writeVersion: (contents: string, version: string) => string;
13
13
  };
14
- //# sourceMappingURL=generic-updater.d.ts.map
@@ -11,4 +11,3 @@ export declare const createPackageJsonUpdater: (packages: WorkspacePackage[]) =>
11
11
  readVersion: (contents: string) => string;
12
12
  writeVersion: (contents: string, version: string) => string;
13
13
  };
14
- //# sourceMappingURL=package-json-updater.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../../src/config/config.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,2BAA2B;;;;;;;;;;;;CA6BvC,CAAC"}
package/index.d.ts.map DELETED
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,2BAA2B,EAAE,MAAM,oBAAoB,CAAC;AACjE,OAAO,EAAE,eAAe,EAAE,MAAM,iCAAiC,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"collect-packages.d.ts","sourceRoot":"","sources":["../../src/workspace/collect-packages.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAkC,gBAAgB,EAAE,MAAM,4BAA4B,CAAC;AAQnG,eAAO,MAAM,8BAA8B,0FAKjC,CAAC;AAEX;;;;;;GAMG;AACH,eAAO,MAAM,eAAe;sBACT,gBAAgB;iBACrB,gBAAgB,EAAE;CAyD/B,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"generic-updater.d.ts","sourceRoot":"","sources":["../../src/workspace/generic-updater.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,4BAA4B,CAAC;AAEnE;;;;;;;GAOG;AACH,eAAO,MAAM,oBAAoB,aAAc,gBAAgB,EAAE;4BAEvC,MAAM,KAAG,MAAM;6BAId,MAAM,WAAW,MAAM,KAAG,MAAM;CAuB1D,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"package-json-updater.d.ts","sourceRoot":"","sources":["../../src/workspace/package-json-updater.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAe,gBAAgB,EAAE,MAAM,4BAA4B,CAAC;AAOhF;;;;;;;GAOG;AACH,eAAO,MAAM,wBAAwB,aAAc,gBAAgB,EAAE;4BAE3C,MAAM,KAAG,MAAM;6BAId,MAAM,WAAW,MAAM,KAAG,MAAM;CA+B1D,CAAC"}