Skip to content

Commit

Permalink
feat: issue-#57 - deps
Browse files Browse the repository at this point in the history
- Updated deno.json to include (root)
 "*.mjs", "*.js", "*.ts", and "*.cjs" files in it's "include" list.
- Removed node 'v16' from
  'monorepo-build.yml'.
- Ran 'pnpm up'.
- Updated export paths,
  in 'fjl' package to start with
  './'.
  • Loading branch information
elycruz committed May 27, 2024
1 parent 645f10a commit 232bec7
Show file tree
Hide file tree
Showing 7 changed files with 473 additions and 452 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/monorepo-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
node-version: [18.x, 20.x, 22.X]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
Expand Down
1 change: 0 additions & 1 deletion .node-version

This file was deleted.

2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20
v20
7 changes: 6 additions & 1 deletion deno.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
{
"lint": {
"include": [
"./*.js",
"./*.cjs",
"./*.mjs",
"./*.ts",
"**/packages/**/src",
"**/node_scripts/"
],
"exclude": [
"**/dist/",
"**/node_modules/"
"**/node_modules/",
"**/coverage/"
],
"rules": {
"include": [
Expand Down
11 changes: 6 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,20 @@
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/jest": "^29.5.12",
"@types/node": "^18.19.17",
"@types/node": "^18.19.33",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"del": "^7.1.0",
"eslint": "^8.56.0",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"jest-puppeteer": "^8.0.6",
"puppeteer": "^21.11.0",
"rollup": "^2.79.1",
"ts-jest": "^29.1.2",
"ts-jest": "^29.1.3",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
"typescript": "^5.4.5"
},
"scripts": {
"eslint": "eslint -c .eslintrc.json",
Expand Down Expand Up @@ -63,5 +63,6 @@
"fjl": "workspace:2.0.0-alpha.5",
"fjl-inputfilter": "workspace:^",
"fjl-validator": "workspace:^"
}
},
"packageManager": "pnpm@8.13.1+sha512.758bebc6989cb6462c5138129840193b10c258ddcdb0ab43ee0ef9dd87784bc218d6e41cb5beeac362b8ce33f1f8b08025b599933c0bce82050a9a36b8474d43"
}
23 changes: 14 additions & 9 deletions packages/fjl/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,15 @@
"name": "fjl",
"version": "2.0.0-alpha.5",
"description": "Functional Javascript Library.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"typings": "dist/esm/index.d.ts",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"typings": "./dist/esm/index.d.ts",
"files": [
"./dist",
"./README.md",
"./package.json",
"./LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/functional-jslib/fjl.git"
Expand All @@ -19,12 +25,12 @@
],
"exports": {
".": {
"require": "dist/cjs/index.js",
"module": "dist/esm/index.js"
"require": "./dist/cjs/index.js",
"module": "./dist/esm/index.js"
},
"./*": {
"require": "dist/cjs/*.js",
"module": "dist/esm/*.js"
"require": "./dist/cjs/*.js",
"module": "./dist/esm/*.js"
}
},
"author": "Ely De La Cruz <elycruz@elycruz.com>",
Expand All @@ -34,7 +40,6 @@
},
"homepage": "https://github.com/functional-jslib/fjl#readme",
"engines": {
"node": ">=16 || >=18",
"npm": ">=8 || >= 9"
"node": ">=16 || >=18 || >=20 || >=22 || >= 24 || >=26"
}
}
Loading

0 comments on commit 232bec7

Please sign in to comment.