-
-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a1938ba
commit 2e0bee7
Showing
39 changed files
with
440 additions
and
437 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
github: [formkit] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: Release | ||
|
||
on: | ||
push: | ||
tags: | ||
- "v*" | ||
|
||
jobs: | ||
release: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: lts/* | ||
|
||
- run: npx changelogithub | ||
env: | ||
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,33 @@ | ||
{ | ||
"name": "@formkit/tempo", | ||
"version": "0.1.0", | ||
"description": "📆 Parse, format, manipulate, and internationalize dates and times in JavaScript and TypeScript.", | ||
"main": "index.js", | ||
"types": "dist/index.d.ts", | ||
"version": "0.0.0", | ||
"description": "The easiest way to work with dates in JavaScript and TypeScript.", | ||
"type": "module", | ||
"main": "dist/index.cjs", | ||
"types": "dist/index.d.cts", | ||
"exports": { | ||
".": { | ||
"import": { | ||
"types": "./dist/index.d.ts", | ||
"default": "./dist/index.mjs" | ||
}, | ||
"require": { | ||
"types": "./dist/index.d.cts", | ||
"default": "./dist/index.cjs" | ||
} | ||
} | ||
}, | ||
"scripts": { | ||
"dev": "cd ./docs && pnpm nuxt dev", | ||
"build": "jiti build.ts", | ||
"build": "tsup", | ||
"test": "TZ=\"America/New_York\" vitest", | ||
"docs-build": "cd ./docs && pnpm run build" | ||
"docs-build": "cd ./docs && pnpm run build", | ||
"publint": "publint", | ||
"release": "pnpm build && bumpp && pnpm publish" | ||
}, | ||
"files": [ | ||
"dist" | ||
], | ||
"keywords": [ | ||
"date", | ||
"time", | ||
|
@@ -27,15 +37,10 @@ | |
"author": "Justin Schroeder <[email protected]>", | ||
"license": "MIT", | ||
"devDependencies": { | ||
"@rollup/plugin-terser": "^0.4.4", | ||
"@rollup/plugin-typescript": "^11.1.6", | ||
"@types/node": "^20.11.10", | ||
"consola": "^3.2.3", | ||
"execa": "^7.2.0", | ||
"jiti": "^1.21.0", | ||
"rollup": "^3.29.4", | ||
"shx": "^0.3.4", | ||
"tslib": "^2.6.2", | ||
"bumpp": "^9.3.0", | ||
"publint": "^0.2.7", | ||
"tsup": "^8.0.1", | ||
"typescript": "^5.3.3", | ||
"vitest": "^1.2.1" | ||
} | ||
|
Oops, something went wrong.