Skip to content

Commit

Permalink
ref: Convert repository into monorepo (#14)
Browse files Browse the repository at this point in the history
Packages:

* spotlight
* spotlight-sidecar
* website

---------

Co-authored-by: Lukas Stracke <[email protected]>
  • Loading branch information
dcramer and Lms24 committed Nov 6, 2023
1 parent 6c0abb3 commit 9f34d4d
Show file tree
Hide file tree
Showing 100 changed files with 15,167 additions and 8,012 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ node
dist-ssr
*.local

.eslintcache

# Editor directories and files
.vscode/*
!.vscode/extensions.json
Expand Down
7 changes: 0 additions & 7 deletions .prettierrc

This file was deleted.

21 changes: 21 additions & 0 deletions .prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"plugins": [
"prettier-plugin-organize-imports",
"prettier-plugin-tailwindcss"
],
"arrowParens": "avoid",
"printWidth": 120,
"tabWidth": 2,
"proseWrap": "always",
"singleQuote": true,
"trailingComma": "all",
"overrides": [
{
"files": ["*.json"],
"options": {
"singleQuote": false,
"quoteProps": "preserve"
}
}
]
}
69 changes: 26 additions & 43 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,62 +4,45 @@
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build && yarn build:sidecar",
"build:sidecar": "tsc --module nodenext --moduleResolution nodenext --esModuleInterop false --target esnext src/node/sidecar.ts --outDir node/",
"build:watch": "vite build --watch",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"fix:prettier": "prettier --write \"{src,test,website}/**/**.ts*\"",
"preview": "vite preview",
"dev": "pnpm -r run dev",
"build": "pnpm -r run build",
"preview": "pnpm -r run preview",
"lint": "eslint . --cache --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preinstall": "npx only-allow pnpm",
"postinstall": "simple-git-hooks",
"format": "prettier --write --cache .",
"yalc:publish": "yalc publish --push --sig --private"
},
"files": [
"dist",
"node"
],
"main": "./dist/sentry-spotlight.js",
"exports": {
".": {
"import": "./dist/sentry-spotlight.js",
"require": "./dist/sentry-spotlight.umd.cjs"
},
"./sidecar": {
"import": "./node/sidecar.js",
"require": "./node/sidecar.cjs"
}
},
"dependencies": {
"@fontsource/raleway": "^5.0.8",
"@sentry/utils": "^7.73.0",
"autoprefixer": "^10.4.15",
"dayjs": "^1.11.9",
"platformicons": "^5.6.2",
"postcss": "^8.4.28",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sql-formatter": "^12.2.4",
"tailwindcss": "^3.3.3",
"usehooks-ts": "^2.9.1",
"vite-plugin-dts": "^3.5.2",
"vite-plugin-svgr": "^3.2.0"
},
"dependencies": {},
"devDependencies": {
"@sentry/types": "^7.64.0",
"@tailwindcss/forms": "^0.5.4",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitejs/plugin-react": "^4.0.3",
"eslint": "^8.45.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"lint-staged": "^15.0.2",
"simple-git-hooks": "^2.9.0",
"prettier": "^3.0.3",
"prettier-plugin-organize-imports": "^3.2.3",
"prettier-plugin-tailwindcss": "^0.5.6",
"typescript": "^5.0.2",
"vite": "^4.4.5"
"rimraf": "^5.0.5"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged --concurrent false"
},
"lint-staged": {
"*": [
"prettier --write --cache --ignore-unknown"
],
"{apps,packages}/**/*.{ts,tsx}": [
"eslint --cache --fix"
]
},
"packageManager": "[email protected]",
"volta": {
"node": "18.18.0",
"yarn": "1.22.19"
"pnpm": "8.6.0"
}
}
33 changes: 33 additions & 0 deletions packages/sidecar/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"name": "@sentry/spotlight-sidecar",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"build": "tsc",
"build:watch": "exit 1",
"clean": "rimraf dist"
},
"files": [
"dist"
],
"main": "dist/main.js",
"module": "dist/main.js",
"types": "dist/main.d.ts",
"exports": {
".": {
"import": "./dist/main.js",
"types": "./dist/main.d.ts"
}
},
"dependencies": {},
"devDependencies": {
"@sentry/spotlight-tsconfig": "workspace:*",
"@types/node": "^18",
"typescript": "^5.0.2"
},
"volta": {
"node": "18.18.0",
"pnpm": "8.6.12"
}
}
25 changes: 25 additions & 0 deletions packages/sidecar/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

File renamed without changes.
18 changes: 18 additions & 0 deletions packages/sidecar/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"extends": "@sentry/spotlight-tsconfig/tsconfig.json",
"compilerOptions": {
"baseUrl": ".",
"paths": {
"~/*": ["src/*"]
},
"moduleResolution": "nodenext",
"esModuleInterop": false,
"target": "esnext",
"module": "nodenext",
"outDir": "dist",
"noEmit": false,
"allowImportingTsExtensions": false,
"declaration": true
},
"include": ["src/*"]
}
53 changes: 53 additions & 0 deletions packages/spotlight/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
{
"name": "@sentry/spotlight",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build:watch": "vite build --watch",
"preview": "vite preview",
"yalc:publish": "yalc publish --push --sig --private"
},
"files": [
"dist"
],
"main": "./dist/sentry-spotlight.js",
"exports": {
".": {
"import": "./dist/sentry-spotlight.js",
"require": "./dist/sentry-spotlight.umd.cjs"
}
},
"dependencies": {
"@fontsource/raleway": "^5.0.8",
"@sentry/utils": "^7.77.0",
"autoprefixer": "^10.4.15",
"dayjs": "^1.11.9",
"platformicons": "^5.6.2",
"postcss": "^8.4.28",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sql-formatter": "^12.2.4",
"tailwindcss": "^3.3.3",
"usehooks-ts": "^2.9.1"
},
"devDependencies": {
"@sentry/spotlight-tsconfig": "workspace:*",
"@sentry/types": "^7.77.0",
"@tailwindcss/forms": "^0.5.4",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitejs/plugin-react": "^4.0.3",
"eslint": "^8.45.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"typescript": "^5.0.2",
"vite": "^4.4.5",
"vite-plugin-dts": "^3.5.2",
"vite-plugin-svgr": "^3.2.0"
}
}
Loading

0 comments on commit 9f34d4d

Please sign in to comment.