Skip to content

Commit

Permalink
Merge branch 'main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
chaseholdren authored May 5, 2024
2 parents d3691b2 + c92cfc5 commit 066d2ed
Show file tree
Hide file tree
Showing 139 changed files with 4,950 additions and 4,132 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion .syncpackrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ const config = {
],
};

module.exports = config;
export default config;
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,25 @@ All notable changes to this project will be documented in this file. Dates are d

Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).

#### [12.3.2](https://github.com/JamieMason/syncpack/compare/12.3.1...12.3.2)

- revert(update): revert commit a1c72704 [`1d2339b`](https://github.com/JamieMason/syncpack/commit/1d2339b284293079f267dc48f751a985031ad85f)

#### [12.3.1](https://github.com/JamieMason/syncpack/compare/12.3.0...12.3.1)

> 21 April 2024
- fix(npm): update dependencies [`90e7d70`](https://github.com/JamieMason/syncpack/commit/90e7d7094abc13ac7d63f70e5dde7f4c9a7af49e)
- fix(core): switch to ESM & update dependencies [`b02c421`](https://github.com/JamieMason/syncpack/commit/b02c4215e06fe28d83656860095dc72244913ad2)
- refactor(effect): run @effect/codemod [`c0d08d5`](https://github.com/JamieMason/syncpack/commit/c0d08d571cb595fc877477cec22b2d928b2ef1bc)

#### [12.3.0](https://github.com/JamieMason/syncpack/compare/12.2.0...12.3.0)

> 30 December 2023
- feat(lint): check files are formatted [`#102`](https://github.com/JamieMason/syncpack/issues/102)
- feat(format): sort .exports, expose more config [`#142`](https://github.com/JamieMason/syncpack/issues/142)
- chore(release): 12.3.0 [`40fef6a`](https://github.com/JamieMason/syncpack/commit/40fef6a334a36b56b933863a56a0adc061e2f66e)
- docs(readme): fix centre alignment of logo [`ae5ac07`](https://github.com/JamieMason/syncpack/commit/ae5ac07e9e058f24b32adcdb675a12e2fcfc12e8)
- chore(core): update release-it config [`93208dd`](https://github.com/JamieMason/syncpack/commit/93208dd6aeb1b354d266f342928ef7a43a9886b1)

Expand Down
67 changes: 30 additions & 37 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "syncpack",
"description": "Consistent dependency versions in large JavaScript Monorepos",
"version": "12.3.0",
"version": "12.3.2",
"author": "Jamie Mason <[email protected]> (https://github.com/JamieMason)",
"bin": {
"syncpack": "dist/bin.js",
Expand Down Expand Up @@ -33,51 +33,53 @@
"Tom Fletcher (https://github.com/tom-fletcher)"
],
"dependencies": {
"@effect/schema": "0.56.1",
"chalk": "4.1.2",
"commander": "11.1.0",
"@effect/schema": "0.66.5",
"chalk": "5.3.0",
"chalk-template": "1.1.0",
"commander": "12.0.0",
"cosmiconfig": "9.0.0",
"effect": "2.0.0-next.62",
"effect": "3.0.3",
"enquirer": "2.4.1",
"fast-check": "3.15.0",
"globby": "11.1.0",
"minimatch": "9.0.3",
"npm-package-arg": "11.0.1",
"ora": "5.4.1",
"fast-check": "3.17.2",
"globby": "14.0.1",
"minimatch": "9.0.4",
"npm-package-arg": "11.0.2",
"ora": "8.0.1",
"prompts": "2.4.2",
"read-yaml-file": "2.1.0",
"semver": "7.5.4",
"tightrope": "0.1.0",
"semver": "7.6.0",
"tightrope": "0.2.0",
"ts-toolbelt": "9.6.0"
},
"devDependencies": {
"@release-it/conventional-changelog": "8.0.1",
"@tsconfig/node18": "18.2.2",
"@types/node": "20.10.6",
"@tsconfig/node18": "18.2.4",
"@types/node": "20.12.7",
"@types/npm-package-arg": "6.1.4",
"@types/prompts": "2.4.9",
"@types/semver": "7.5.6",
"@typescript-eslint/eslint-plugin": "6.16.0",
"@typescript-eslint/parser": "6.16.0",
"@vitest/coverage-v8": "1.1.0",
"@types/semver": "7.5.8",
"@typescript-eslint/eslint-plugin": "6.19.0",
"@typescript-eslint/parser": "6.19.0",
"@vitest/coverage-v8": "1.5.0",
"auto-changelog": "2.4.0",
"eslint": "8.56.0",
"eslint-plugin-import": "2.29.1",
"memfs": "4.6.0",
"prettier": "3.1.1",
"prettier-plugin-astro": "0.12.3",
"memfs": "4.8.2",
"prettier": "3.2.5",
"prettier-plugin-astro": "0.13.0",
"quill-delta": "5.1.0",
"release-it": "17.0.1",
"release-it": "17.2.0",
"rxjs": "7.8.1",
"ts-node": "10.9.2",
"tslib": "2.6.2",
"typescript": "5.3.3",
"typescript-json-schema": "0.62.0",
"vitest": "1.1.0"
"typescript": "5.4.5",
"typescript-json-schema": "0.63.0",
"vitest": "1.5.0"
},
"engines": {
"node": ">=16"
},
"exports": "./dist/index.js",
"files": [
"dist"
],
Expand All @@ -103,20 +105,10 @@
"yarn"
],
"license": "MIT",
"main": "dist/index.js",
"pnpm": {
"overrides": {
"chalk": "4.1.2",
"effect": "2.0.0-next.62",
"string-width": "<5.0.0",
"strip-ansi": "<7.0.0",
"wrap-ansi": "<8.0.0"
}
},
"repository": "JamieMason/syncpack",
"scripts": {
"build": "pnpm run clean && pnpm run build:source && pnpm run build:json-schema",
"build:json-schema": "typescript-json-schema --esModuleInterop --noExtraProps src/index.ts JsonSchema --out dist/schema.json",
"build:json-schema": "typescript-json-schema --esModuleInterop --noExtraProps --ignoreErrors src/index.ts JsonSchema --out dist/schema.json",
"build:source": "tsc --project tsconfig.build.json",
"clean": "rm -rf ./dist",
"format": "pnpm run format:lint && pnpm run format:source",
Expand All @@ -128,5 +120,6 @@
"prepack": "pnpm run build",
"release": "release-it",
"test": "vitest run --config vitest.config.ts"
}
},
"type": "module"
}
Loading

0 comments on commit 066d2ed

Please sign in to comment.