@konker.dev/tiny-utils-fp 0.1.1 → 0.1.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +2 -3
  2. package/package.json +7 -5
package/README.md CHANGED
@@ -4,7 +4,6 @@ General utility functions for [Node.js](https://nodejs.org/) based on [Effect-TS
4
4
 
5
5
  FIXME: test coverage for `src/stream/ChildProcessStreamPipe.ts`
6
6
 
7
- ![License](https://img.shields.io/github/license/konkerdotdev/tiny-utils-fp)
7
+ ![License](https://img.shields.io/github/license/konker/konker.dev)
8
8
  [![NPM Version](https://img.shields.io/npm/v/%40konker.dev%2Ftiny-utils-fp)](https://www.npmjs.com/package/@konker.dev/tiny-utils-fp)
9
- [![CI](https://github.com/konkerdotdev/tiny-utils-fp/actions/workflows/ci.yml/badge.svg)](https://github.com/konkerdotdev/tiny-utils-fp/actions/workflows/ci.yml)
10
- [![codecov](https://codecov.io/gh/konkerdotdev/tiny-utils-fp/graph/badge.svg?token=W3BFLXCWTH)](https://codecov.io/gh/konkerdotdev/tiny-utils-fp)
9
+ [![codecov](https://codecov.io/gh/konker/konker.dev/graph/badge.svg?token=G0CMXHW679&flag=@konker.dev/tiny-utils-fp)](https://codecov.io/gh/konker/konker.dev?flags[0]=@konker.dev/tiny-utils-fp)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@konker.dev/tiny-utils-fp",
3
- "version": "0.1.1",
3
+ "version": "0.1.9",
4
4
  "type": "module",
5
5
  "author": "Konrad Markus <mail@konker.dev>",
6
6
  "license": "ISC",
@@ -47,16 +47,17 @@
47
47
  "main": "dist/index.js",
48
48
  "dependencies": {
49
49
  "effect": "^3.11.3",
50
- "@konker.dev/tiny-error-fp": "0.1.1"
50
+ "@konker.dev/tiny-error-fp": "0.1.9"
51
51
  },
52
52
  "devDependencies": {
53
53
  "@arethetypeswrong/cli": "^0.17.1",
54
54
  "@effect/language-service": "^0.1.0",
55
55
  "@eslint/compat": "^1.2.4",
56
56
  "@eslint/js": "^9.17.0",
57
- "@konker.dev/common-config": "^0.1.0",
57
+ "@konker.dev/common-config": "^0.2.1",
58
58
  "@types/node": "^20.17.10",
59
59
  "@vitest/coverage-istanbul": "^2.1.8",
60
+ "codecov": "^3.8.3",
60
61
  "eslint": "^9.17.0",
61
62
  "eslint-plugin-fp": "^2.3.0",
62
63
  "eslint-plugin-prettier": "^5.2.1",
@@ -80,7 +81,7 @@
80
81
  "circular-check": "madge --extensions ts --circular --no-color --no-spinner --warning src",
81
82
  "eslint-check": "eslint --max-warnings=0 '**/*.{ts,js,json}'",
82
83
  "eslint-fix": "npx eslint --fix||true",
83
- "generated-exports-check": "npx --package=@konker.dev/common-config generate-exports-verify packages/tiny-utils-fp",
84
+ "generated-exports-check": "npx --package=@konker.dev/common-config generate-exports-verify `pwd`",
84
85
  "exports-check": "attw --pack . --ignore-rules=cjs-resolves-to-esm --profile=node16",
85
86
  "fixme-check": "leasot --exit-nicely --skip-unsupported src",
86
87
  "prettier-check": "npx prettier --check --ignore-path .gitignore --ignore-path .prettierignore '**/*.{css,html,js,ts,json,md,yaml,yml}'",
@@ -88,7 +89,8 @@
88
89
  "lint-check": "pnpm run eslint-check && pnpm run prettier-check && pnpm run circular-check && pnpm run fixme-check",
89
90
  "lint-fix": "pnpm run eslint-fix && pnpm run prettier-fix",
90
91
  "pre-push": "pnpm run lint-check && pnpm run typecheck",
92
+ "codecov": "npx --package=@konker.dev/common-config codecov-upload `pwd` '@konker.dev/tiny-utils-fp'",
91
93
  "ci": "pnpm run lint-check && pnpm run typecheck && pnpm run type-coverage-check && pnpm run test && pnpm run build && pnpm run generated-exports-check && pnpm run exports-check && pnpm run fixme-check",
92
- "cd": "pnpm run build && pnpm publish --access public"
94
+ "cd": "pnpm run build && npx --package=@konker.dev/common-config npm-publish-if-version-not-exists `pwd`"
93
95
  }
94
96
  }