Skip to content

Commit eb91084

Browse files
author
Fabien MARIE-LOUISE
committed
chore(setup): add turbo, husky, commitizen, github actions
1 parent cd8930e commit eb91084

13 files changed

+244
-1
lines changed

.changeset/README.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Changesets
2+
3+
Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works
4+
with multi-package repos, or single-package repos to help you version and publish your code. You can
5+
find the full documentation for it [in our repository](https://github.com/changesets/changesets)
6+
7+
We have a quick list of common questions to get you started engaging with this project in
8+
[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)

.changeset/config.json

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json",
3+
"changelog": "@changesets/cli/changelog",
4+
"commit": false,
5+
"fixed": [],
6+
"linked": [],
7+
"access": "restricted",
8+
"baseBranch": "main",
9+
"updateInternalDependencies": "patch",
10+
"ignore": []
11+
}

.editorconfig

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
root = true
2+
3+
[*]
4+
indent_style = space
5+
indent_size = 2
6+
end_of_line = LF
7+
charset = utf-8
8+
insert_final_newline = true

.github/workflows/tests.yml

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: Build and Test
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
runs-on: ${{ matrix.operating-system }}
8+
9+
strategy:
10+
matrix:
11+
node-version: [16.x, 17.x]
12+
operating-system: [windows-latest, ubuntu-latest, macos-latest]
13+
14+
steps:
15+
- name: Check out code
16+
uses: actions/checkout@v2
17+
with:
18+
fetch-depth: 2
19+
20+
- uses: pnpm/[email protected]
21+
with:
22+
version: 7.0.0-rc.2
23+
24+
- name: Setup Node.js environment ${{ matrix.node-version }}
25+
uses: actions/setup-node@v2
26+
with:
27+
node-version: ${{ matrix.node-version }}
28+
cache: pnpm
29+
30+
- name: Install dependencies
31+
run: pnpm install
32+
33+
- name: Build
34+
run: pnpm build
35+
36+
- name: Test
37+
run: pnpm turbo run test
38+
env:
39+
CI: true

.gitignore

+68-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,41 @@
1+
# Created by https://www.toptal.com/developers/gitignore/api/macos,node
2+
# Edit at https://www.toptal.com/developers/gitignore?templates=macos,node
3+
4+
# Turborepo
5+
.turbo
6+
build/**
7+
dist/**
8+
9+
### macOS ###
10+
# General
11+
.DS_Store
12+
.AppleDouble
13+
.LSOverride
14+
15+
# Icon must end with two \r
16+
Icon
17+
18+
19+
# Thumbnails
20+
._*
21+
22+
# Files that might appear in the root of a volume
23+
.DocumentRevisions-V100
24+
.fseventsd
25+
.Spotlight-V100
26+
.TemporaryItems
27+
.Trashes
28+
.VolumeIcon.icns
29+
.com.apple.timemachine.donotpresent
30+
31+
# Directories potentially created on remote AFP share
32+
.AppleDB
33+
.AppleDesktop
34+
Network Trash Folder
35+
Temporary Items
36+
.apdisk
37+
38+
### Node ###
139
# Logs
240
logs
341
*.log
@@ -40,6 +78,7 @@ build/Release
4078
# Dependency directories
4179
node_modules/
4280
jspm_packages/
81+
dist/
4382

4483
# TypeScript v1 declaration files
4584
typings/
@@ -53,6 +92,9 @@ typings/
5392
# Optional eslint cache
5493
.eslintcache
5594

95+
# Optional stylelint cache
96+
.stylelintcache
97+
5698
# Microbundle cache
5799
.rpt2_cache/
58100
.rts2_cache_cjs/
@@ -71,9 +113,11 @@ typings/
71113
# dotenv environment variables file
72114
.env
73115
.env.test
116+
.env*.local
74117

75118
# parcel-bundler cache (https://parceljs.org/)
76119
.cache
120+
.parcel-cache
77121

78122
# Next.js build output
79123
.next
@@ -82,9 +126,17 @@ typings/
82126
.nuxt
83127
dist
84128

129+
# Storybook build outputs
130+
.out
131+
.storybook-out
132+
storybook-static
133+
134+
# rollup.js default build output
135+
dist/
136+
85137
# Gatsby files
86138
.cache/
87-
# Comment in the public line in if your project uses Gatsby and *not* Next.js
139+
# Comment in the public line in if your project uses Gatsby and not Next.js
88140
# https://nextjs.org/blog/next-9-1#public-directory-support
89141
# public
90142

@@ -102,3 +154,18 @@ dist
102154

103155
# TernJS port file
104156
.tern-port
157+
158+
# Stores VSCode versions used for testing VSCode extensions
159+
.vscode-test
160+
161+
# Temporary folders
162+
tmp/
163+
temp/
164+
165+
# End of https://www.toptal.com/developers/gitignore/api/macos,node
166+
.vscode/settings.json
167+
168+
# ignore lock files, only needed for apps, not libs
169+
*lock.json
170+
*lock.yaml
171+
*.lock

.husky/commit-msg

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/bin/sh
2+
. "$(dirname "$0")/_/husky.sh"
3+
4+
npx --no-install commitlint --edit $1

.husky/pre-commit

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/bin/sh
2+
. "$(dirname "$0")/_/husky.sh"
3+
4+
npx lint-staged

.prettierrc.json

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"trailingComma": "none",
3+
"tabWidth": 2,
4+
"semi": true,
5+
"singleQuote": false,
6+
"arrowParens": "avoid",
7+
"printWidth": 100
8+
}

README.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<p>
2+
<img width="100%" src="https://assets.solidjs.com/banner?type=Aria&background=tiles&project=%20" alt="Solid ARIA">
3+
</p>
4+
5+
# Solid Aria
6+
7+
A library of high-quality primitives that help you build accessible user interfaces with SolidJS.

commitlint.config.js

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module.exports = {
2+
extends: ["@commitlint/config-conventional"]
3+
};

package.json

+62
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
{
2+
"name": "solid-aria-monorepo",
3+
"version": "0.0.1",
4+
"description": "A library of high-quality primitives that help you build accessible user interfaces with SolidJS.",
5+
"repository": {
6+
"type": "git",
7+
"url": "git+https://github.com/solidjs-community/solid-aria.git"
8+
},
9+
"license": "MIT",
10+
"author": "David Di Biase <[email protected]>",
11+
"workspaces": [
12+
"packages/*"
13+
],
14+
"scripts": {
15+
"build": "turbo run build",
16+
"commit": "git-cz",
17+
"format": "prettier . --write --ignore-path .gitignore && git update-index --again",
18+
"lint": "eslint . --ext .ts,.tsx --ignore-path .gitignore",
19+
"prepare": "husky install",
20+
"test": "turbo run test"
21+
},
22+
"lint-staged": {
23+
"*.{md,json}": [
24+
"prettier --write"
25+
],
26+
"*.ts?(x)": [
27+
"eslint",
28+
"prettier --write"
29+
],
30+
"package.json": "npx sort-package-json"
31+
},
32+
"config": {
33+
"commitizen": {
34+
"path": "@commitlint/cz-commitlint"
35+
}
36+
},
37+
"devDependencies": {
38+
"@changesets/cli": "2.22.0",
39+
"@commitlint/cli": "16.2.3",
40+
"@commitlint/config-conventional": "16.2.1",
41+
"@commitlint/cz-commitlint": "16.2.3",
42+
"commitizen": "4.2.4",
43+
"eslint": "8.12.0",
44+
"eslint-config-prettier": "8.5.0",
45+
"eslint-import-resolver-typescript": "2.7.1",
46+
"eslint-plugin-import": "2.26.0",
47+
"eslint-plugin-jsx-a11y": "6.5.1",
48+
"eslint-plugin-prettier": "4.0.0",
49+
"eslint-plugin-simple-import-sort": "7.0.0",
50+
"eslint-plugin-solid": "0.4.6",
51+
"husky": "7.0.4",
52+
"lint-staged": "12.3.7",
53+
"prettier": "2.6.2",
54+
"solid-js": "1.3.15",
55+
"solid-testing-library": "0.3.0",
56+
"sort-package-json": "1.55.0",
57+
"turbo": "1.2.4",
58+
"typescript": "4.6.3",
59+
"vite": "2.9.5",
60+
"vite-plugin-solid": "2.2.6"
61+
}
62+
}

pnpm-workspace.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
packages:
2+
- packages/*

turbo.json

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"$schema": "https://turborepo.org/schema.json",
3+
"baseBranch": "origin/main",
4+
"pipeline": {
5+
"build": {
6+
"dependsOn": ["^build"],
7+
"outputs": ["dist/**"]
8+
},
9+
"test": {
10+
"dependsOn": ["^build"],
11+
"outputs": []
12+
},
13+
"lint": {
14+
"outputs": []
15+
},
16+
"dev": {
17+
"cache": false
18+
}
19+
}
20+
}

0 commit comments

Comments
 (0)