Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
/.yarn/** linguist-vendored
/.yarn/releases/* binary
/.yarn/plugins/**/* binary
/.pnp.* binary linguist-generated

* text eol=lf

*.ico binary
*.png binary
*.jpg binary
10 changes: 3 additions & 7 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,16 @@ jobs:
os: [ubuntu-latest, windows-latest]
node-version: [20.x]
steps:
- name: Set git to use LF (instead of CRLF on Windows)
run: |
git config --global core.autocrlf false
git config --global core.eol lf
- uses: actions/checkout@v5
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Enable corepack
run: corepack enable
- uses: actions/setup-node@v4
with:
cache: 'yarn'
- name: install
run: yarn
- name: build
Expand All @@ -35,9 +34,6 @@ jobs:
run: yarn format:check
- name: unit tests
run: yarn test:ci
- name: tests install
working-directory: ./tests
run: yarn
- name: tests generate
working-directory: ./tests
run: yarn generate
Expand Down
3 changes: 2 additions & 1 deletion .npmignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
*
!dist/**/*
!README.md
!package.json
!package.json
dist/**/*.d.ts.map
1 change: 1 addition & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
nodeLinker: node-modules

packageExtensions:
'@vue/test-utils@*':
peerDependencies:
Expand Down
1 change: 1 addition & 0 deletions docs/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ const visit = require('unist-util-visit');
const remarkPlugins = require('./src/lib/docs/remark-plugins.js');

module.exports = {
experimental: { esmExternals: 'loose' },
pageExtensions: ['jsx', 'js', 'ts', 'tsx', 'mdx', 'md'],
rewrites() {
return [
Expand Down
15 changes: 7 additions & 8 deletions docs/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{
"name": "docs",
"version": "1.0.0",
"main": "index.js",
"author": "Jared Palmer <[email protected]>",
"license": "MIT",
"scripts": {
Expand All @@ -22,7 +21,7 @@
"@octokit/graphql": "^5.0.4",
"@reactions/component": "^2.0.2",
"@tanstack/react-query": "^4.22.0",
"axios": "^1.8.4",
"axios": "^1.11.0",
"body-scroll-lock": "^3.1.5",
"classnames": "^2.5.1",
"copy-to-clipboard": "^3.3.3",
Expand All @@ -33,8 +32,8 @@
"gray-matter": "^4.0.3",
"intersection-observer": "^0.12.2",
"next": "^15.4.4",
"orval": "^7.9.0",
"prettier": "^2.8.3",
"orval": "workspace:*",
"prettier": "3.6.2",
"prismjs": "^1.21.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
Expand All @@ -60,19 +59,19 @@
"algoliasearch": "3.35.1",
"autoprefixer": "^10.4.16",
"babel-preset-react-app": "^9.1.2",
"dotenv-load": "^2.0.0",
"dotenv-load": "^2.0.1",
"github-slugger": "^1.3.0",
"md5": "^2.3.0",
"mdast-util-to-string": "^1.1.0",
"nextjs-sitemap-generator": "^1.1.3",
"postcss": "8.4.21",
"remark-parse": "^8.0.3",
"tailwindcss": "^3.3.5"
"tailwindcss": "^3.4.1"
},
"engines": {
"node": "18.x"
"node": ">=20"
},
"volta": {
"node": "18.18.2"
"node": "20.19.4"
}
}
Loading
Loading