-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
19 changed files
with
124 additions
and
111 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,5 @@ | ||
--- | ||
"@spear-ai/tailwind-config": patch | ||
--- | ||
|
||
Updated Turbo tasks. |
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,4 @@ | ||
name: Checks | ||
name: Build and check | ||
on: | ||
pull_request: | ||
types: | ||
|
@@ -20,7 +20,7 @@ jobs: | |
TURBO_TEAM: ${{ vars.TURBO_TEAM }} | ||
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} | ||
steps: | ||
- name: Checkout Git repository | ||
- name: Checkout repository | ||
uses: actions/[email protected] | ||
with: | ||
fetch-depth: 2 | ||
|
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 |
---|---|---|
|
@@ -14,6 +14,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
outputs: | ||
should-deploy: ${{ steps.changesets.outputs.hasChangesets == 'false' }} | ||
permissions: write-all | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/[email protected] | ||
|
@@ -41,6 +42,6 @@ jobs: | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | ||
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
with: | ||
title: "ci: release 🚀" | ||
commit: "ci: release 🚀" | ||
publish: yarn run publish-packages | ||
title: Release 🚀 | ||
version: yarn run version | ||
commit: Release 🚀 |
Binary file removed
BIN
-4.39 KB
.yarn/cache/@commitlint-config-conventional-npm-18.6.0-de9e741038-96f96966ef.zip
Binary file not shown.
Binary file added
BIN
+226 KB
.yarn/cache/@spear-ai-commitlint-config-npm-3.1.0-aa17bc306e-630eb170e0.zip
Binary file not shown.
Binary file removed
BIN
-9.56 KB
.yarn/cache/conventional-changelog-conventionalcommits-npm-7.0.2-f878f86efe-3cc6586ac5.zip
Binary file not shown.
Binary file not shown.
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 @@ | ||
import type { UserConfig } from "@commitlint/types"; | ||
|
||
const commitlintConfig: UserConfig = { | ||
extends: ["@spear-ai/commitlint-config"], | ||
}; | ||
|
||
export default commitlintConfig; |
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
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 |
---|---|---|
|
@@ -12,7 +12,8 @@ | |
"@changesets/changelog-github": "0.5.0", | ||
"@changesets/cli": "2.27.1", | ||
"@commitlint/cli": "18.6.0", | ||
"@commitlint/config-conventional": "18.6.0", | ||
"@commitlint/types": "18.6.0", | ||
"@spear-ai/commitlint-config": "3.1.0", | ||
"@spear-ai/eslint-config": "17.1.0", | ||
"@spear-ai/npm-package-json-lint-config": "3.1.0", | ||
"@spear-ai/prettier-config": "2.1.0", | ||
|
@@ -27,27 +28,29 @@ | |
"turbo": "1.12.3", | ||
"typescript": "5.3.3" | ||
}, | ||
"license": "", | ||
"license": "UNLICENSED", | ||
"packageManager": "[email protected]", | ||
"private": true, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/spear-ai/ui.git" | ||
}, | ||
"scripts": { | ||
"version": "changeset version && yarn workspaces foreach -A run sync-version", | ||
"build": "yarn dlx turbo build", | ||
"check": "yarn dlx turbo root:check-yarn-cache root:lint:eslint root:lint:npm lint:eslint lint:prettier lint:npm", | ||
"fix": "yarn dlx turbo root:fix fix", | ||
"commitlint:check": "commitlint --from=HEAD^1", | ||
"eslint:check": "eslint --max-warnings 0 .", | ||
"eslint:fix": "yarn eslint:check --fix", | ||
"github-actions:push": "act push -s GH_PAT=$GH_PAT -s GITHUB_TOKEN=$GH_PAT -s NPM_TOKEN=$NPM_TOKEN", | ||
"github-actions:push:release-tag": "act push -e .github/test-events/push-release-tag.json -s GH_PAT=$GH_PAT -s GITHUB_TOKEN=$GH_PAT", | ||
"publish-packages": "yarn publish-packages:npm && yarn publish-packages:github && yarn changeset tag", | ||
"npmpkgjsonlint:check": "npmPkgJsonLint .", | ||
"prettier:check": "prettier --check .", | ||
"prettier:fix": "prettier --write .", | ||
"publish-packages": "yarn run publish-packages:npm && yarn run publish-packages:github && yarn run publish-packages:custom && yarn changeset tag", | ||
"publish-packages:custom": "yarn workspaces foreach -A run publish-package", | ||
"publish-packages:github": "npm_config_registry=https://npm.pkg.github.com changeset publish --no-git-tag", | ||
"publish-packages:npm": "changeset publish --no-git-tag", | ||
"root:check-yarn-cache": "yarn install --check-cache --immutable --immutable-cache", | ||
"root:fix": "yarn root:lint:eslint --fix", | ||
"root:lint:eslint": "eslint --max-warnings 0 .", | ||
"root:lint:npm": "npmPkgJsonLint .", | ||
"root:lint:prettier": "prettier --check ." | ||
"typescript:check": "tsc --noEmit" | ||
}, | ||
"workspaces": [ | ||
"packages/*" | ||
|
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
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,5 +1,3 @@ | ||
/* eslint-disable import/no-extraneous-dependencies */ | ||
|
||
const prettierConfig = require("@spear-ai/prettier-config"); | ||
|
||
module.exports = prettierConfig; |
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.