soff-date 0.2.0 → 1.0.1

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 +5 -5
  2. package/package.json +12 -25
package/README.md CHANGED
@@ -1,11 +1,11 @@
1
1
  # Soff Date
2
2
 
3
3
  [![npm](https://img.shields.io/npm/v/soff-date)](https://www.npmjs.com/package/soff-date)
4
- [![License](https://img.shields.io/github/license/bledxs/soff-date)](LICENSE)
5
- [![Build Status](https://github.com/bledxs/soff-date/actions/workflows/ci.yml/badge.svg)](https://github.com/bledxs/soff-date/actions)
6
- [![codecov](https://codecov.io/gh/bledxs/soff-date/branch/main/graph/badge.svg)](https://codecov.io/gh/bledxs/soff-date)
4
+ [![License](https://img.shields.io/github/license/bledxs/soff-monorepo)](LICENSE)
5
+ [![Build Status](https://github.com/bledxs/soff-monorepo/actions/workflows/ci.yml/badge.svg)](https://github.com/bledxs/soff-monorepo/actions)
6
+ [![codecov](https://codecov.io/gh/bledxs/soff-monorepo/branch/master/graph/badge.svg)](https://codecov.io/gh/bledxs/soff-monorepo)
7
7
  [![minzipped size](https://img.shields.io/bundlephobia/minzip/soff-date)](https://bundlephobia.com/package/soff-date)
8
- [![All Contributors](https://img.shields.io/github/all-contributors/bledxs/soff-date?color=ee8449&style=flat-square)](#contributors)
8
+ [![All Contributors](https://img.shields.io/github/all-contributors/bledxs/soff-monorepo?color=ee8449&style=flat-square)](#contributors)
9
9
 
10
10
  Lightweight, tree-shakeable holiday calculator with algorithmic date computation.
11
11
 
@@ -268,7 +268,7 @@ Thanks goes to these wonderful people ([emoji key](https://all-contributors.js.o
268
268
  <table>
269
269
  <tbody>
270
270
  <tr>
271
- <td align="center" valign="top" width="14.28%"><a href="https://github.com/bledxs"><img src="https://avatars.githubusercontent.com/u/90062924?v=4" width="100px;" alt="Luis C. Rojas"/><br /><sub><b>Luis C. Rojas</b></sub></a><br /><a href="https://github.com/bledxs/soff-date/commits?author=bledxs" title="Code">💻</a> <a href="https://github.com/bledxs/soff-date/commits?author=bledxs" title="Documentation">📖</a> <a href="#maintenance-bledxs" title="Maintenance">🚧</a></td>
271
+ <td align="center" valign="top" width="14.28%"><a href="https://github.com/bledxs"><img src="https://avatars.githubusercontent.com/u/90062924?v=4" width="100px;" alt="Luis C. Rojas"/><br /><sub><b>Luis C. Rojas</b></sub></a><br /><a href="https://github.com/bledxs/soff-monorepo/commits?author=bledxs" title="Code">💻</a> <a href="https://github.com/bledxs/soff-monorepo/commits?author=bledxs" title="Documentation">📖</a> <a href="#maintenance-bledxs" title="Maintenance">🚧</a></td>
272
272
  </tr>
273
273
  </tbody>
274
274
  </table>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "soff-date",
3
- "version": "0.2.0",
3
+ "version": "1.0.1",
4
4
  "description": "Lightweight, tree-shakeable holiday calculator with algorithmic date computation",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -125,28 +125,17 @@
125
125
  "scripts": {
126
126
  "build": "tsup",
127
127
  "dev": "tsup --watch",
128
- "test": "vitest",
128
+ "test": "vitest run",
129
+ "test:watch": "vitest",
129
130
  "test:coverage": "vitest --coverage",
130
- "typecheck": "tsc --noEmit",
131
+ "type-check": "tsc --noEmit",
131
132
  "lint": "eslint .",
132
133
  "lint:fix": "eslint . --fix",
134
+ "clean": "rimraf dist coverage .turbo",
133
135
  "format": "prettier --write .",
134
136
  "contributors:add": "all-contributors add",
135
137
  "contributors:generate": "all-contributors generate",
136
- "prepublishOnly": "npm run build",
137
- "version": "npm run build",
138
- "postversion": "git push && git push --tags",
139
- "prepare": "husky",
140
- "commitlint": "commitlint --edit"
141
- },
142
- "lint-staged": {
143
- "*.{ts,tsx,js,jsx}": [
144
- "eslint --fix",
145
- "prettier --write"
146
- ],
147
- "*.{json,md,yml,yaml}": [
148
- "prettier --write"
149
- ]
138
+ "prepublishOnly": "npm run build"
150
139
  },
151
140
  "keywords": [
152
141
  "holidays",
@@ -167,27 +156,25 @@
167
156
  "license": "MIT",
168
157
  "repository": {
169
158
  "type": "git",
170
- "url": "git+https://github.com/bledxs/soff-date.git"
159
+ "url": "git+https://github.com/bledxs/soff-monorepo.git",
160
+ "directory": "packages/soff-date"
171
161
  },
172
162
  "bugs": {
173
- "url": "https://github.com/bledxs/soff-date/issues"
163
+ "url": "https://github.com/bledxs/soff-monorepo/issues"
174
164
  },
175
- "homepage": "https://github.com/bledxs/soff-date#readme",
165
+ "homepage": "https://github.com/bledxs/soff-monorepo/tree/master/packages/soff-date#readme",
176
166
  "engines": {
177
167
  "node": ">=20"
178
168
  },
179
169
  "devDependencies": {
180
- "@commitlint/cli": "^20.1.0",
181
- "@commitlint/config-conventional": "^20.0.0",
182
170
  "@eslint/js": "^9.39.1",
171
+ "@soff/tsconfig": "*",
183
172
  "@vitest/coverage-v8": "^4.0.14",
184
- "all-contributors-cli": "^6.26.1",
185
173
  "eslint": "^9.39.1",
186
174
  "eslint-config-prettier": "^10.1.8",
187
175
  "globals": "^16.5.0",
188
- "husky": "^9.1.7",
189
- "lint-staged": "^16.2.7",
190
176
  "prettier": "^3.7.3",
177
+ "rimraf": "^6.0.1",
191
178
  "tsup": "^8.5.1",
192
179
  "typescript": "^5.9.3",
193
180
  "typescript-eslint": "^8.48.0",