-
Notifications
You must be signed in to change notification settings - Fork 10
feat: core package build
#139
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
c6cfa80
d807afe
cb6698d
33edff0
6c4901a
5b23348
821d292
bca4a19
1b1b7d0
d36564a
54a5f33
8201ffb
a0acf0c
4f6ae16
b32eddb
e85a0dd
1acb8e7
ab1f6f7
a370863
11f971d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| { | ||
| "extends": ["./tsconfig.json"], | ||
| "compilerOptions": { | ||
| "noEmit": true, | ||
| "customConditions": [] | ||
| } | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| { | ||
| "extends": ["./tsconfig.json"], | ||
| "compilerOptions": { | ||
| "noEmit": true, | ||
| "customConditions": [] | ||
| } | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| { | ||
| "$schema": "https://openapi.vercel.sh/vercel.json", | ||
| "installCommand": "cd ../../ && git clean ./apps -fx && pnpm install && rm -rf ./apps/frontend/node_modules && pnpm --filter ./apps/frontend/ --legacy deploy ./apps/deployment/ && mv ./apps/deployment/node_modules/ ./apps/frontend/node_modules/", | ||
| "installCommand": "cd ../../ && git clean ./apps -fx && pnpm install && pnpm run build:packages && rm -rf ./apps/frontend/node_modules && pnpm --filter ./apps/frontend/ --legacy deploy ./apps/deployment/ && mv ./apps/deployment/node_modules/ ./apps/frontend/node_modules/", | ||
| "buildCommand": "pnpm run build", | ||
| "outputDirectory": "build" | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -51,26 +51,35 @@ | |
| "github-stats-extended", | ||
| "github-readme-stats-extended" | ||
| ], | ||
| "main": "src/index.js", | ||
| "main": "./build/index.js", | ||
| "exports": { | ||
| ".": "./src/index.js" | ||
| ".": { | ||
| "@stats/source": "./src/index.ts", | ||
|
martin-mfg marked this conversation as resolved.
|
||
| "default": "./build/index.js" | ||
| } | ||
| }, | ||
| "files": [ | ||
| "build", | ||
| "src" | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Great that you found so quickly what was the problem with the vercel build.
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
I've added the |
||
| ], | ||
| "publishConfig": { | ||
| "access": "public" | ||
| }, | ||
| "scripts": { | ||
| "build": "tsc -p tsconfig.build.json", | ||
| "test": "vitest", | ||
| "test:update:snapshot": "vitest -u", | ||
| "test:e2e": "vitest --config vitest.config.e2e.ts", | ||
| "bench": "vitest bench --run --config vitest.config.bench.ts", | ||
| "lint": "eslint", | ||
| "typecheck": "tsc -p tsconfig.typecheck.json", | ||
| "theme-readme-gen": "node scripts/generate-theme-doc", | ||
| "generate-langs-json": "node scripts/generate-langs-json" | ||
| }, | ||
| "devDependencies": { | ||
| "@testing-library/dom": "10.4.1", | ||
| "@testing-library/jest-dom": "6.9.1", | ||
| "@uppercod/css-to-object": "1.1.1", | ||
| "@vitest/coverage-v8": "catalog:default", | ||
| "axios-mock-adapter": "2.1.0", | ||
| "js-yaml": "4.1.1", | ||
| "jsdom": "28.1.0", | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.