| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- {
- "$schema": "https://turbo.build/schema.json",
- "globalEnv": ["NODE_ENV"],
- "ui": "tui",
- "tasks": {
- "build": {
- "dependsOn": ["^build", "build:cjs", "build:esm"],
- "inputs": [
- "$TURBO_DEFAULT$",
- "!README.md",
- "!**/*.test.*",
- "!jest.config.js",
- "!eslint.config.js",
- "!prettier.config.js",
- "!vercel.json"
- ],
- "outputs": ["dist/**", "lib/**"]
- },
- "build:cjs": {
- "outputs": ["dist/cjs/**"]
- },
- "build:esm": {
- "outputs": ["dist/esm/**"]
- },
- "fix": {
- "dependsOn": ["fix:lint", "fix:format"],
- "cache": false
- },
- "fix:format": {
- "dependsOn": ["fix:lint"],
- "cache": false
- },
- "fix:lint": {
- "dependsOn": ["^build"],
- "cache": false
- },
- "test": {
- "dependsOn": [
- "test:types",
- "test:unit",
- "test:integration",
- "test:format",
- "test:lint"
- ]
- },
- "test:format": {},
- "test:lint": {
- "dependsOn": ["^build"]
- },
- "test:types": {
- "dependsOn": ["^build"]
- },
- "test:unit": {
- "dependsOn": ["^build"]
- },
- "test:integration": {
- "dependsOn": ["^build"]
- }
- }
- }
|