Skip to content

Commit

Permalink
Merge pull request #6 from Anastasia-Labs/monorepo
Browse files Browse the repository at this point in the history
Monorepo
  • Loading branch information
solidsnakedev authored Mar 8, 2024
2 parents 6b2074c + 449acee commit 866b1e8
Show file tree
Hide file tree
Showing 31 changed files with 734 additions and 1,063 deletions.
8 changes: 8 additions & 0 deletions .changeset/README.md
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)
11 changes: 11 additions & 0 deletions .changeset/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json",
"changelog": "@changesets/cli/changelog",
"commit": false,
"fixed": [],
"linked": [],
"access": "restricted",
"baseBranch": "main",
"updateInternalDependencies": "patch",
"ignore": []
}
4 changes: 2 additions & 2 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// This configuration only applies to the package manager root.
/** @type {import("eslint").Linter.Config} */
module.exports = {
ignorePatterns: ["apps/**", "packages/**"],
extends: ["@repo/eslint-config/library.js"],
ignorePatterns: ["docs/**", "packages/**"],
extends: ["@lucid-evolution/eslint-config/library.js"],
parser: "@typescript-eslint/parser",
parserOptions: {
project: true,
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/.eslintrc.js → docs/.eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/** @type {import("eslint").Linter.Config} */
module.exports = {
root: true,
extends: ["@repo/eslint-config/next.js"],
extends: ["@lucid-evolution/eslint-config/next.js"],
parser: "@typescript-eslint/parser",
parserOptions: {
project: true,
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 3 additions & 3 deletions apps/docs/package.json → docs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "docs",
"version": "1.0.0",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "next dev",
Expand All @@ -17,8 +17,8 @@
},
"devDependencies": {
"@next/eslint-plugin-next": "^14.0.4",
"@repo/eslint-config": "workspace:*",
"@repo/typescript-config": "workspace:*",
"@lucid-evolution/eslint-config": "workspace:*",
"@lucid-evolution/typescript-config": "workspace:*",
"@types/eslint": "^8.56.1",
"@types/node": "^20.10.6",
"@types/react": "^18.2.46",
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
2 changes: 1 addition & 1 deletion apps/docs/tsconfig.json → docs/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "@repo/typescript-config/nextjs.json",
"extends": "@lucid-evolution/typescript-config/nextjs.json",
"compilerOptions": {
"plugins": [
{
Expand Down
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,12 @@
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"format-check": "prettier --check \"**/*.{ts,tsx,md}\"",
"test" : "turbo test"
"test": "turbo test"
},
"devDependencies": {
"@repo/eslint-config": "workspace:*",
"@repo/typescript-config": "workspace:*",
"@changesets/cli": "^2.27.1",
"@lucid-evolution/eslint-config": "workspace:*",
"@lucid-evolution/typescript-config": "workspace:*",
"prettier": "^3.1.1",
"turbo": "latest"
},
Expand Down
7 changes: 7 additions & 0 deletions packages/eslint-config/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# @lucid-evolution/eslint-config

## 0.1.0

### Minor Changes

- e76d00f: update dependency names from repo to lucid-evolution
4 changes: 2 additions & 2 deletions packages/eslint-config/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@repo/eslint-config",
"version": "0.0.0",
"name": "@lucid-evolution/eslint-config",
"version": "0.1.0",
"private": true,
"files": [
"library.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/lucid-evolution/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "lucid-evolution",
"name": "@anastasia-labs/lucid-evolution",
"version": "0.0.1",
"description": "",
"main": "./dist/mod.js",
Expand Down
7 changes: 7 additions & 0 deletions packages/typescript-config/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# @lucid-evolution/typescript-config

## 0.1.0

### Minor Changes

- e76d00f: update dependency names from repo to lucid-evolution
4 changes: 2 additions & 2 deletions packages/typescript-config/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@repo/typescript-config",
"version": "0.0.0",
"name": "@lucid-evolution/typescript-config",
"version": "0.1.0",
"private": true,
"license": "MIT",
"publishConfig": {
Expand Down
Loading

0 comments on commit 866b1e8

Please sign in to comment.