-
Notifications
You must be signed in to change notification settings - Fork 4
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
zbeyens
committed
Dec 8, 2023
0 parents
commit e081baa
Showing
58 changed files
with
15,883 additions
and
0 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,8 @@ | ||
# Changesets | ||
|
||
Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works | ||
with multi-package repos, or single-package repos to help you version and publish your code. You can | ||
find the full documentation for it [in our repository](https://github.com/changesets/changesets) | ||
|
||
We have a quick list of common questions to get you started engaging with this project in | ||
[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md) |
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,101 @@ | ||
const { config } = require("dotenv"); | ||
const { getInfo, getInfoFromPullRequest } = require("@changesets/get-github-info"); | ||
|
||
config(); | ||
|
||
module.exports = { | ||
getDependencyReleaseLine: async ( | ||
) => { | ||
return "" | ||
}, | ||
getReleaseLine: async (changeset, type, options) => { | ||
if (!options || !options.repo) { | ||
throw new Error( | ||
'Please provide a repo to this changelog generator like this:\n"changelog": ["@changesets/changelog-github", { "repo": "org/repo" }]' | ||
); | ||
} | ||
|
||
let prFromSummary; | ||
let commitFromSummary; | ||
let usersFromSummary = []; | ||
|
||
const replacedChangelog = changeset.summary | ||
.replace(/^\s*(?:pr|pull|pull\s+request):\s*#?(\d+)/im, (_, pr) => { | ||
let num = Number(pr); | ||
if (!isNaN(num)) prFromSummary = num; | ||
return ""; | ||
}) | ||
.replace(/^\s*commit:\s*([^\s]+)/im, (_, commit) => { | ||
commitFromSummary = commit; | ||
return ""; | ||
}) | ||
.replace(/^\s*(?:author|user):\s*@?([^\s]+)/gim, (_, user) => { | ||
usersFromSummary.push(user); | ||
return ""; | ||
}) | ||
.trim(); | ||
|
||
const [firstLine, ...futureLines] = replacedChangelog | ||
.split("\n") | ||
.map(l => l.trimRight()); | ||
|
||
const links = await (async () => { | ||
if (prFromSummary !== undefined) { | ||
let { links } = await getInfoFromPullRequest({ | ||
repo: options.repo, | ||
pull: prFromSummary | ||
}); | ||
if (commitFromSummary) { | ||
links = { | ||
...links, | ||
commit: `[\`${commitFromSummary}\`](https://github.com/${options.repo}/commit/${commitFromSummary})` | ||
}; | ||
} | ||
return links; | ||
} | ||
const commitToFetchFrom = commitFromSummary || changeset.commit; | ||
if (commitToFetchFrom) { | ||
let { links } = await getInfo({ | ||
repo: options.repo, | ||
commit: commitToFetchFrom | ||
}); | ||
return links; | ||
} | ||
return { | ||
commit: null, | ||
pull: null, | ||
user: null | ||
}; | ||
})(); | ||
|
||
const users = usersFromSummary.length | ||
? usersFromSummary | ||
.map( | ||
userFromSummary => | ||
`[@${userFromSummary}](https://github.com/${userFromSummary})` | ||
) | ||
.join(", ") | ||
: links.user; | ||
|
||
const pull = links.pull === null ? "" : ` ${links.pull}` | ||
const commit = !!pull || links.commit === null ? "" : ` ${links.commit}` | ||
|
||
const prefix = [ | ||
pull, | ||
commit, | ||
users === null ? "" : ` by ${users}` | ||
].join(""); | ||
|
||
let lines = `${firstLine}\n${futureLines | ||
.map(l => ` ${l}`) | ||
.join("\n")}`; | ||
|
||
if (firstLine[0] === '-') { | ||
lines = `\n ${firstLine}\n${futureLines | ||
.map(l => ` ${l}`) | ||
.join("\n")}`; | ||
} | ||
|
||
return `\n\n-${prefix ? `${prefix} –` : ""} ${lines}`; | ||
} | ||
}; |
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,10 @@ | ||
{ | ||
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json", | ||
"changelog": ["./changelog-config", { "repo": "udecode/jotai-x" }], | ||
"commit": false, | ||
"linked": [["jotai-x"]], | ||
"access": "public", | ||
"baseBranch": "main", | ||
"updateInternalDependencies": "patch", | ||
"ignore": [] | ||
} |
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 @@ | ||
/dist |
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,84 @@ | ||
const { | ||
getDefaultIgnorePatterns, | ||
} = require('./config/eslint/helpers/getDefaultIgnorePatterns.cjs'); | ||
|
||
/** @type {import("eslint").Linter.Config} */ | ||
module.exports = { | ||
root: true, | ||
extends: [ | ||
'turbo', | ||
|
||
'./config/eslint/bases/javascript.cjs', | ||
'./config/eslint/bases/typescript.cjs', | ||
'./config/eslint/bases/regexp.cjs', | ||
'./config/eslint/bases/jest.cjs', | ||
'./config/eslint/bases/react.cjs', | ||
'./config/eslint/bases/rtl.cjs', | ||
|
||
'./config/eslint/bases/unicorn.cjs', | ||
|
||
'./config/eslint/bases/prettier.cjs', | ||
], | ||
ignorePatterns: [ | ||
...getDefaultIgnorePatterns(), | ||
'.next', | ||
'.out', | ||
'**/__registry__', | ||
], | ||
env: { | ||
browser: true, | ||
es6: true, | ||
jest: true, | ||
node: true, | ||
webextensions: false, | ||
}, | ||
settings: { | ||
'import/parsers': { | ||
'@typescript-eslint/parser': ['.ts', '.tsx'], | ||
}, | ||
'import/resolver': { | ||
node: { | ||
moduleDirectory: ['node_modules'], | ||
typescript: { | ||
alwaysTryTypes: true, | ||
}, | ||
}, | ||
typescript: {}, | ||
}, | ||
react: { version: 'detect' }, | ||
}, | ||
rules: {}, | ||
overrides: [ | ||
{ | ||
files: ['**/*.spec.*'], | ||
extends: ['./config/eslint/bases/prettier.cjs'], | ||
rules: { | ||
'react/jsx-key': 'off', | ||
'import/no-relative-packages': 'off', | ||
'import/no-unresolved': 'off', | ||
}, | ||
}, | ||
{ | ||
files: ['**/*.test.*', '**/*.spec.*', '**/*.fixture.*'], | ||
env: { | ||
jest: true, | ||
}, | ||
rules: { | ||
'@typescript-eslint/no-unused-vars': 'off', | ||
// 'react-hooks/rules-of-hooks': 'off', | ||
'no-restricted-imports': [ | ||
'error', | ||
{ | ||
paths: [], | ||
}, | ||
], | ||
}, | ||
}, | ||
{ | ||
files: '**/*.mdx', | ||
rules: { | ||
'prettier/prettier': 'off', | ||
}, | ||
}, | ||
], | ||
}; |
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,29 @@ | ||
--- | ||
name: '🚨 Bug' | ||
about: A bug that occurs in jotai-x logic | ||
title: '' | ||
labels: bug | ||
assignees: '' | ||
--- | ||
|
||
**Description** | ||
|
||
<!-- A clear and concise description of what the bug is. --> | ||
|
||
**Steps** | ||
|
||
<!-- Can be a list of steps, a GIF or video showing the issue happening. --> | ||
<!-- To reproduce the behavior: | ||
1. Go to '...' | ||
2. Click on '....' | ||
3. Scroll down to '....' | ||
4. See error --> | ||
|
||
<!-- A link to a sandbox where the error can be reproduced. --> | ||
|
||
**Expectation** | ||
|
||
<!-- A clear and concise description of what you expected to | ||
happen. (Often it's helpful to test out the behavior of other editors | ||
like Google Docs, Medium, Notion, etc. to see how they handle the same | ||
issue.) --> |
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,5 @@ | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: '💬 Support: Discussions' | ||
url: https://github.com/udecode/jotai-x/discussions | ||
about: Share ideas, ask and answer questions in our Discussions. |
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,16 @@ | ||
**Description** | ||
|
||
See changesets. | ||
|
||
<!-- A clear and concise description of what this pull request solves. --> | ||
<!-- If your change is non-trivial, please include a description of how the | ||
new logic works, and why you decided to solve it the way you did. --> | ||
|
||
|
||
<!-- **Example** --> | ||
|
||
|
||
|
||
<!-- (optional) A sandbox, GIF or video showing the old and new behaviors after this | ||
pullrequest is merged. Or a code sample showing the usage of a new API. --> | ||
|
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,124 @@ | ||
######################################################################################## | ||
# "yarn install" composite action for yarn 3/4+ and "nodeLinker: node-modules" # | ||
#--------------------------------------------------------------------------------------# | ||
# Requirement: @setup/node should be run before # | ||
# # | ||
# Usage in workflows steps: # | ||
# # | ||
# - name: 📥 Monorepo install # | ||
# uses: ./.github/actions/yarn-nm-install # | ||
# with: # | ||
# enable-corepack: false # (default = 'false') # | ||
# cache-npm-cache: false # (default = 'true') # | ||
# cwd: ${{ github.workspace }}/apps/my-app # (default = '.') # | ||
# cache-prefix: add cache key prefix # (default = 'default') # | ||
# cache-node-modules: false # (default = 'false') # | ||
# cache-install-state: false # (default = 'false') # | ||
# # | ||
# Reference: # | ||
# - latest: https://gist.github.com/belgattitude/042f9caf10d029badbde6cf9d43e400a # | ||
# # | ||
# Versions: # | ||
# - 1.1.0 - 22-07-2023 - Option to enable npm global cache folder. # | ||
# - 1.0.4 - 15-07-2023 - Fix corepack was always enabled. # | ||
# - 1.0.3 - 05-07-2023 - YARN_ENABLE_MIRROR to false (speed up cold start) # | ||
# - 1.0.2 - 02-06-2023 - install-state default to false # | ||
# - 1.0.1 - 29-05-2023 - cache-prefix doc # | ||
# - 1.0.0 - 27-05-2023 - new input: cache-prefix # | ||
######################################################################################## | ||
|
||
name: 'Monorepo install (yarn)' | ||
description: 'Run yarn install with node_modules linker and cache enabled' | ||
inputs: | ||
cwd: | ||
description: "Changes node's process.cwd() if the project is not located on the root. Default to process.cwd()" | ||
required: false | ||
default: '.' | ||
cache-prefix: | ||
description: 'Add a specific cache-prefix' | ||
required: false | ||
default: 'default' | ||
cache-npm-cache: | ||
description: 'Cache npm global cache folder often used by node-gyp, prebuild binaries (invalidated on lock/os/node-version)' | ||
required: false | ||
default: 'true' | ||
cache-node-modules: | ||
description: 'Cache node_modules, might speed up link step (invalidated lock/os/node-version/branch)' | ||
required: false | ||
default: 'false' | ||
cache-install-state: | ||
description: 'Cache yarn install state, might speed up resolution step when node-modules cache is activated (invalidated lock/os/node-version/branch)' | ||
required: false | ||
default: 'false' | ||
enable-corepack: | ||
description: 'Enable corepack' | ||
required: false | ||
default: 'true' | ||
|
||
runs: | ||
using: 'composite' | ||
|
||
steps: | ||
- name: ⚙️ Enable Corepack | ||
if: inputs.enable-corepack == 'true' | ||
shell: bash | ||
working-directory: ${{ inputs.cwd }} | ||
run: corepack enable | ||
|
||
- name: ⚙️ Expose yarn config as "$GITHUB_OUTPUT" | ||
id: yarn-config | ||
shell: bash | ||
working-directory: ${{ inputs.cwd }} | ||
env: | ||
YARN_ENABLE_GLOBAL_CACHE: 'false' | ||
run: | | ||
echo "CACHE_FOLDER=$(yarn config get cacheFolder)" >> $GITHUB_OUTPUT | ||
echo "CURRENT_NODE_VERSION="node-$(node --version)"" >> $GITHUB_OUTPUT | ||
echo "CURRENT_BRANCH=$(echo ${GITHUB_REF#refs/heads/} | sed -r 's,/,-,g')" >> $GITHUB_OUTPUT | ||
echo "NPM_GLOBAL_CACHE_FOLDER=$(npm config get cache)" >> $GITHUB_OUTPUT | ||
- name: ♻️ Restore yarn cache | ||
uses: actions/cache@v3 | ||
id: yarn-download-cache | ||
with: | ||
path: ${{ steps.yarn-config.outputs.CACHE_FOLDER }} | ||
key: yarn-download-cache-${{ inputs.cache-prefix }}-${{ hashFiles(format('{0}/yarn.lock', inputs.cwd), format('{0}/.yarnrc.yml', inputs.cwd)) }} | ||
restore-keys: | | ||
yarn-download-cache-${{ inputs.cache-prefix }}- | ||
- name: ♻️ Restore node_modules | ||
if: inputs.cache-node-modules == 'true' | ||
id: yarn-nm-cache | ||
uses: actions/cache@v3 | ||
with: | ||
path: ${{ inputs.cwd }}/**/node_modules | ||
key: yarn-nm-cache-${{ inputs.cache-prefix }}-${{ runner.os }}-${{ steps.yarn-config.outputs.CURRENT_NODE_VERSION }}-${{ steps.yarn-config.outputs.CURRENT_BRANCH }}-${{ hashFiles(format('{0}/yarn.lock', inputs.cwd), format('{0}/.yarnrc.yml', inputs.cwd)) }} | ||
|
||
- name: ♻️ Restore global npm cache folder | ||
if: inputs.cache-npm-cache == 'true' | ||
id: npm-global-cache | ||
uses: actions/cache@v3 | ||
with: | ||
path: ${{ steps.yarn-config.outputs.NPM_GLOBAL_CACHE_FOLDER }} | ||
key: npm-global-cache-${{ inputs.cache-prefix }}-${{ runner.os }}-${{ steps.yarn-config.outputs.CURRENT_NODE_VERSION }}-${{ hashFiles(format('{0}/yarn.lock', inputs.cwd), format('{0}/.yarnrc.yml', inputs.cwd)) }} | ||
|
||
- name: ♻️ Restore yarn install state | ||
if: inputs.cache-install-state == 'true' && inputs.cache-node-modules == 'true' | ||
id: yarn-install-state-cache | ||
uses: actions/cache@v3 | ||
with: | ||
path: ${{ inputs.cwd }}/.yarn/ci-cache | ||
key: yarn-install-state-cache-${{ inputs.cache-prefix }}-${{ runner.os }}-${{ steps.yarn-config.outputs.CURRENT_NODE_VERSION }}-${{ steps.yarn-config.outputs.CURRENT_BRANCH }}-${{ hashFiles(format('{0}/yarn.lock', inputs.cwd), format('{0}/.yarnrc.yml', inputs.cwd)) }} | ||
|
||
- name: 📥 Install dependencies | ||
shell: bash | ||
working-directory: ${{ inputs.cwd }} | ||
run: yarn install --immutable --inline-builds | ||
env: | ||
# Overrides/align yarnrc.yml options (v3, v4) for a CI context | ||
YARN_ENABLE_GLOBAL_CACHE: 'false' # Use local cache folder to keep downloaded archives | ||
YARN_ENABLE_MIRROR: 'false' # Prevent populating global cache for caches misses (local cache only) | ||
YARN_NM_MODE: 'hardlinks-local' # Reduce node_modules size | ||
YARN_INSTALL_STATE_PATH: '.yarn/ci-cache/install-state.gz' # Might speed up resolution step when node_modules present | ||
# Other environment variables | ||
HUSKY: '0' # By default do not run HUSKY install |
Oops, something went wrong.