Skip to content

Commit

Permalink
Merge branch 'master' into feat/add-ts-config-docs-verifier
Browse files Browse the repository at this point in the history
  • Loading branch information
maschad committed May 22, 2023
2 parents 765304f + fe1e121 commit be4a239
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 6 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
## [39.0.8](https://github.com/ipfs/aegir/compare/v39.0.7...v39.0.8) (2023-05-19)


### Bug Fixes

* do not enforce engines in package.json ([#1277](https://github.com/ipfs/aegir/issues/1277)) ([5e9c2fa](https://github.com/ipfs/aegir/commit/5e9c2fa44508ffbc5cf89042d44dc22c13b260d2)), closes [#1184](https://github.com/ipfs/aegir/issues/1184)

## [39.0.7](https://github.com/ipfs/aegir/compare/v39.0.6...v39.0.7) (2023-05-17)


### Bug Fixes

* add tsconfig to exports map ([#1278](https://github.com/ipfs/aegir/issues/1278)) ([94b4c4b](https://github.com/ipfs/aegir/commit/94b4c4bb7fbccc13da5492d727c6e02b4e7c8eac))

## [39.0.6](https://github.com/ipfs/aegir/compare/v39.0.5...v39.0.6) (2023-05-09)


Expand Down
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aegir",
"version": "39.0.6",
"version": "39.0.8",
"description": "JavaScript project management",
"license": "Apache-2.0 OR MIT",
"homepage": "https://github.com/ipfs/aegir#readme",
Expand Down Expand Up @@ -101,6 +101,9 @@
"types": "./dist/utils/resolve.d.ts",
"browser": "./utils/resolve.browser.js",
"import": "./utils/resolve.js"
},
"./src/config/tsconfig.aegir.json": {
"require": "./src/config/tsconfig.aegir.json"
}
},
"eslintConfig": {
Expand Down
4 changes: 0 additions & 4 deletions src/check-project/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -248,10 +248,6 @@ export function constructManifest (manifest, manifestFields, repoUrl, homePage =
url: `${repoUrl}/issues`
},
keywords: manifest.keywords ? manifest.keywords.sort() : undefined,
engines: {
node: '>=18.0.0',
npm: '>=8.6.0'
},
bin: manifest.bin,
...manifestFields,
scripts: manifest.scripts,
Expand Down
2 changes: 1 addition & 1 deletion src/config/.npmpackagejsonlintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"require-description": "error",
"require-devDependencies": "off",
"require-directories": "off",
"require-engines": "error",
"require-engines": "off",
"require-files": "error",
"require-funding": "off",
"require-homepage": "error" ,
Expand Down

0 comments on commit be4a239

Please sign in to comment.