Skip to content

Commit

Permalink
Merge branch 'main' into feat/bundle-recast
Browse files Browse the repository at this point in the history
  • Loading branch information
antfu committed Sep 15, 2023
2 parents 30a3f87 + 0d65b23 commit c3c5d0d
Show file tree
Hide file tree
Showing 17 changed files with 332 additions and 245 deletions.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,31 @@
# Changelog


## v0.2.11

[compare changes](https://github.com/unjs/magicast/compare/v0.2.10...v0.2.11)

### 🚀 Enhancements

- **helpers:** Handle Vite config declarations with `satisfies` keyword ([#82](https://github.com/unjs/magicast/pull/82))

### 🏡 Chore

- **release:** V0.2.10 ([4faf487](https://github.com/unjs/magicast/commit/4faf487))
- Use v8 coverage ([c1277a7](https://github.com/unjs/magicast/commit/c1277a7))
- Update deps, lint with new prettier ([30df539](https://github.com/unjs/magicast/commit/30df539))
- Update tsconfig ([02743d3](https://github.com/unjs/magicast/commit/02743d3))
- Lint ([4601589](https://github.com/unjs/magicast/commit/4601589))

### 🤖 CI

- Update lint order ([5a5d49d](https://github.com/unjs/magicast/commit/5a5d49d))

### ❤️ Contributors

- Lukas Stracke <[email protected]>
- Anthony Fu <[email protected]>

## v0.2.10

[compare changes](https://github.com/unjs/magicast/compare/v0.2.9...v0.2.10)
Expand Down
2 changes: 0 additions & 2 deletions build.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@ export default defineBuildConfig({
alias: {
'source-map': 'source-map-js',
// eslint-disable-next-line unicorn/prefer-module
assert: resolve(__dirname, 'stubs/assert/index.js'),
// eslint-disable-next-line unicorn/prefer-module
recast: resolve(__dirname, 'vendor/recast/main.ts'),
// eslint-disable-next-line unicorn/prefer-module
'ast-types': resolve(__dirname, 'vendor/ast-types/src/main.ts'),
Expand Down
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "magicast",
"version": "0.2.10",
"version": "0.2.11",
"description": "Modify a JS/TS file and write back magically just like JSON!",
"repository": "unjs/magicast",
"license": "MIT",
Expand Down Expand Up @@ -40,17 +40,17 @@
"test:full": "pnpm run test && pnpm run build && pnpm run test:build"
},
"dependencies": {
"@babel/parser": "^7.22.15",
"@babel/types": "^7.22.15",
"@babel/parser": "^7.22.16",
"@babel/types": "^7.22.19",
"source-map-js": "^1.0.2"
},
"devDependencies": {
"@types/node": "^20.5.9",
"@vitest/coverage-v8": "^0.34.3",
"@vitest/ui": "^0.34.3",
"@types/node": "^20.6.0",
"@vitest/coverage-v8": "^0.34.4",
"@vitest/ui": "^0.34.4",
"ast-types": "^0.16.1",
"changelogen": "^0.5.5",
"eslint": "^8.48.0",
"eslint": "^8.49.0",
"eslint-config-unjs": "^0.2.1",
"esno": "^0.17.0",
"giget": "^1.1.2",
Expand All @@ -62,7 +62,7 @@
"source-map": "npm:source-map-js@latest",
"typescript": "^5.2.2",
"unbuild": "^2.0.0",
"vitest": "^0.34.3"
"vitest": "^0.34.4"
},
"resolutions": {
"source-map": "npm:source-map-js@latest"
Expand All @@ -76,7 +76,7 @@
"prettier -w"
]
},
"packageManager": "[email protected].4",
"packageManager": "[email protected].5",
"pnpm": {
"overrides": {
"array-includes": "npm:@nolyfill/array-includes@latest",
Expand Down
Loading

0 comments on commit c3c5d0d

Please sign in to comment.