-
-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* parent 54c13b9 author Puru Vijay <[email protected]> 1672524660 +0530 committer Puru Vijay <[email protected]> 1672584699 +0530 parent 54c13b9 author Puru Vijay <[email protected]> 1672524660 +0530 committer Puru Vijay <[email protected]> 1672584683 +0530 Update GH action chore: update versions (next) (#91) * chore: update versions (next) * Update .gitignore * remove .pnpm-store Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Puru Vijay <[email protected]> Co-authored-by: Puru Vijay <[email protected]> Delete npmrc chore: Attempt fixing changeset/action and fail chore: update versions (next) (#93) * chore: update versions (next) * Delete .npmrc Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Puru Vijay <[email protected]> Add npm auth token to action Add NPM_TOKEN to top level env Update release.yml Update pnpm version Add pnpm cache chore: update versions (next) (#93) * chore: update versions (next) * Delete .npmrc Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Puru Vijay <[email protected]> Add npm auth token to action Update release.yml * fix: Add recompute bounds * feat: legacy transform & perf (#95) * Push current version * Set legacyTranslate to true by default * push changset * Docs * Add changesets * Better style of tags * feat: new exposed properties from events (#96) * Use instanceOf, return new things from events * Rename targetNode to currentNode * Update docs * Better document exported types about events * Rework some logic * generate changsets * Fix documentation for solid, dont ship globals file * Update rootNode * Use new API in themeswitcher * feat: new output formats (#97) * Push current trials * New output formats * Add changset * chore: update versions (next) (#98) Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> * feat: custom transform function (#99) * Implement new transform property * Add docs * Fix installation for now * Push sitemap * Add changeset * chore: update versions (next) (#100) Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> * Make PawCursor client:only * Update sizes * Update script * FIx docs * Update deps * Add fonts, minor fixes * feat: 2.0 README (#102) * Push READMEs * Update link * Update read the docs links * Update code snippets * fix: double click issue (#103) * Exit prerelease Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
- Loading branch information
1 parent
fdb9f56
commit 4c54702
Showing
73 changed files
with
1,863 additions
and
3,375 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,4 +1,5 @@ | ||
node_modules/ | ||
dist/ | ||
.DS_Store | ||
.env | ||
.env | ||
.pnpm-store/ |
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
export const coreConfig: ({ | ||
dtsBanner, | ||
}: | ||
| { | ||
dtsBanner?: string; | ||
} | ||
| undefined) => ReturnType<typeof import('ttsup').defineConfig>; |
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,28 @@ | ||
import { defineConfig } from 'ttsup'; | ||
|
||
/** | ||
* | ||
* @param {Object} param0 | ||
* @param {string} param0.dtsBanner | ||
* @returns | ||
*/ | ||
export const coreConfig = ({ dtsBanner } = { dtsBanner: '' }) => | ||
defineConfig([ | ||
{ | ||
entry: ['./src/index.ts'], | ||
format: 'esm', | ||
external: ['vue', 'react', 'solid-js', 'svelte'], | ||
dts: { resolve: true, banner: dtsBanner }, | ||
clean: true, | ||
treeshake: 'smallest', | ||
}, | ||
{ | ||
entry: ['./src/index.ts'], | ||
minify: 'terser', | ||
external: ['vue', 'react', 'solid-js', 'svelte'], | ||
format: 'esm', | ||
clean: true, | ||
outDir: 'dist/min', | ||
treeshake: 'smallest', | ||
}, | ||
]); |
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,12 @@ | ||
{ | ||
"name": "@neodrag/tsup-config", | ||
"version": "1.0.0", | ||
"main": "index.js", | ||
"type": "module", | ||
"exports": { | ||
".": { | ||
"import": "./index.js", | ||
"types": "./index.d.ts" | ||
} | ||
} | ||
} |
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,50 @@ | ||
# docs | ||
|
||
## 0.0.3 | ||
|
||
### Patch Changes | ||
|
||
- Updated dependencies [[`bd831dcc`](https://github.com/PuruVJ/neodrag/commit/bd831dcc101d967b78505acd064cdfcde03b62ff), [`3c10f6ae`](https://github.com/PuruVJ/neodrag/commit/3c10f6ae377c3e9fc9fea963ea99204a4649806c), [`9e5c4647`](https://github.com/PuruVJ/neodrag/commit/9e5c46477c7781bc75a57944983434a0c8ceff77), [`da98e910`](https://github.com/PuruVJ/neodrag/commit/da98e910469d63e53e2462e74196bad3b90ea053), [`a1572bce`](https://github.com/PuruVJ/neodrag/commit/a1572bce5186051a5114dd580017a49fc2b3c7fc), [`8dd0d88f`](https://github.com/PuruVJ/neodrag/commit/8dd0d88ff0458c0bd6d20e3649371fdf732c9ebb)]: | ||
- @neodrag/svelte@2.0.0 | ||
|
||
## 0.0.3-next.5 | ||
|
||
### Patch Changes | ||
|
||
- Updated dependencies [[`a1572bc`](https://github.com/PuruVJ/neodrag/commit/a1572bce5186051a5114dd580017a49fc2b3c7fc)]: | ||
- @neodrag/svelte@2.0.0-next.6 | ||
|
||
## 0.0.3-next.4 | ||
|
||
### Patch Changes | ||
|
||
- Updated dependencies [[`9e5c464`](https://github.com/PuruVJ/neodrag/commit/9e5c46477c7781bc75a57944983434a0c8ceff77)]: | ||
- @neodrag/svelte@2.0.0-next.5 | ||
|
||
## 0.0.3-next.3 | ||
|
||
### Patch Changes | ||
|
||
- Updated dependencies []: | ||
- @neodrag/svelte@2.0.0-next.4 | ||
|
||
## 0.0.3-next.2 | ||
|
||
### Patch Changes | ||
|
||
- Updated dependencies [[`0f513db2`](https://github.com/PuruVJ/neodrag/commit/0f513db2c0a88ed03f0472311a03b6ae0e4f9483), [`8dd0d88f`](https://github.com/PuruVJ/neodrag/commit/8dd0d88ff0458c0bd6d20e3649371fdf732c9ebb)]: | ||
- @neodrag/svelte@2.0.0-next.3 | ||
|
||
## 0.0.3-next.1 | ||
|
||
### Patch Changes | ||
|
||
- Updated dependencies [[`820307b`](https://github.com/PuruVJ/neodrag/commit/820307b9e2ed5884b2c4d167ba2f7ae2bad14f87)]: | ||
- @neodrag/svelte@2.0.0-next.2 | ||
|
||
## 0.0.3-next.0 | ||
|
||
### Patch Changes | ||
|
||
- Updated dependencies [[`8d04e73`](https://github.com/PuruVJ/neodrag/commit/8d04e7327c81ad345610bdc87bcf0f8b6a40fa9e)]: | ||
- @neodrag/svelte@2.0.0-next.1 |
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
Oops, something went wrong.
4c54702
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
neodrag – ./
neodrag-puruvj.vercel.app
neodrag-git-main-puruvj.vercel.app
neodrag.vercel.app
www.neodrag.dev
neodrag.dev