Skip to content

Commit

Permalink
Merge branch 'main' into feat/postcss
Browse files Browse the repository at this point in the history
  • Loading branch information
pi0 committed Nov 22, 2023
2 parents a4c58e7 + e7d3ffb commit b98eb74
Show file tree
Hide file tree
Showing 7 changed files with 1,295 additions and 1,276 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/autofix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,15 @@ jobs:
autofix:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: corepack enable
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: 18
cache: "pnpm"
- run: pnpm install
- name: Fix lint issues
run: pnpm run lint:fix
- uses: autofix-ci/action@8bc06253bec489732e5f9c52884c7cace15c0160
- uses: autofix-ci/action@bee19d72e71787c12ca0f29de72f2833e437e4c9
with:
commit-message: 'style: apply lint fixes'
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: corepack enable
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: 16
cache: "pnpm"
Expand Down
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,28 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## v1.3.1

[compare changes](https://github.com/unjs/mkdist/compare/v1.3.0...v1.3.1)

### 🩹 Fixes

- **cjs:** Hotfix babel transformation issue ([94444df](https://github.com/unjs/mkdist/commit/94444df))

### 🏡 Chore

- Format with prettier v3 ([86fd8cb](https://github.com/unjs/mkdist/commit/86fd8cb))
- Update dependencies ([6078463](https://github.com/unjs/mkdist/commit/6078463))

### 🤖 CI

- Use conventional commit for autofix ([2e20d10](https://github.com/unjs/mkdist/commit/2e20d10))

### ❤️ Contributors

- Pooya Parsa ([@pi0](http://github.com/pi0))
- Daniel Roe ([@danielroe](http://github.com/danielroe))

## v1.3.0

[compare changes](https://github.com/unjs/mkdist/compare/v1.2.0...v1.3.0)
Expand Down
42 changes: 21 additions & 21 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{
"name": "mkdist",
"version": "1.3.0",
"version": "1.3.1",
"description": "Lightweight file-to-file transformer",
"repository": "unjs/mkdist",
"license": "MIT",
"main": "./dist/index.cjs",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"bin": {
"mkdist": "./dist/cli.cjs"
Expand All @@ -30,38 +30,38 @@
},
"dependencies": {
"autoprefixer": "^10.4.14",
"citty": "^0.1.2",
"citty": "^0.1.5",
"cssnano": "^6.0.1",
"defu": "^6.1.2",
"esbuild": "^0.18.14",
"defu": "^6.1.3",
"esbuild": "^0.19.7",
"fs-extra": "^11.1.1",
"globby": "^13.2.2",
"jiti": "^1.19.1",
"mlly": "^1.4.0",
"jiti": "^1.21.0",
"mlly": "^1.4.2",
"mri": "^1.2.0",
"pathe": "^1.1.1",
"postcss": "^8.4.26",
"postcss-nested": "^6.0.1"
},
"devDependencies": {
"@types/fs-extra": "^11.0.1",
"@types/mri": "^1.1.1",
"@types/node": "^20.4.2",
"@vitest/coverage-v8": "^0.33.0",
"@types/fs-extra": "^11.0.4",
"@types/mri": "^1.1.5",
"@types/node": "^20.9.4",
"@vitest/coverage-v8": "^0.34.6",
"c8": "latest",
"changelogen": "^0.5.4",
"eslint": "^8.45.0",
"changelogen": "^0.5.5",
"eslint": "^8.54.0",
"eslint-config-unjs": "^0.2.1",
"modern-normalize": "^2.0.0",
"prettier": "^3.0.0",
"sass": "^1.63.6",
"typescript": "^5.1.6",
"unbuild": "^1.2.1",
"vitest": "^0.33.0"
"prettier": "^3.1.0",
"sass": "^1.69.5",
"typescript": "^5.3.2",
"unbuild": "^2.0.0",
"vitest": "^0.34.6"
},
"peerDependencies": {
"sass": "^1.63.6",
"typescript": ">=5.1.6"
"sass": "^1.69.5",
"typescript": ">=5.3.2"
},
"peerDependenciesMeta": {
"sass": {
Expand All @@ -71,5 +71,5 @@
"optional": true
}
},
"packageManager": "pnpm@8.6.7"
"packageManager": "pnpm@8.10.5"
}
Loading

0 comments on commit b98eb74

Please sign in to comment.