|
4 | 4 | "version": "0.0.0",
|
5 | 5 | "workspaces": [
|
6 | 6 | "examples/*",
|
7 |
| - "packages/*" |
| 7 | + "packages/*", |
| 8 | + "internal/*" |
8 | 9 | ],
|
9 | 10 | "engines": {
|
10 | 11 | "node": "^14.15.0"
|
11 | 12 | },
|
12 | 13 | "scripts": {
|
13 |
| - "test": "turbo run test", |
| 14 | + "test": "FORCE_COLOR=1 turbo run test --filter='./packages/*'", |
14 | 15 | "test:scripts": "jest --config scripts/jest.config.js",
|
15 | 16 | "lint": "yarn constraints && turbo run lint",
|
16 |
| - "build": "turbo run build", |
17 |
| - "build:packages": "turbo run build --filter='./packages/*'", |
| 17 | + "build": "turbo run build --filter='./packages/*'", |
18 | 18 | "watch": "turbo run watch --filter='./packages/*'",
|
19 | 19 | "dev": "yarn workspace with-next-js run dev",
|
20 | 20 | "postinstall": "husky install",
|
21 | 21 | "changeset": "changeset",
|
22 | 22 | "update-versions-and-changelogs": "changeset version && yarn version-run-all && bash scripts/update-lockfile.sh",
|
23 |
| - "release": "yarn build:packages --force && changeset publish && yarn postpublish-run-all && git push origin --tags --no-verify", |
| 23 | + "release": "yarn build --force && changeset publish && yarn postpublish-run-all && git push origin --tags --no-verify", |
24 | 24 | "postpublish-run-all": "yarn workspaces foreach -vpt --no-private run postpublish",
|
25 | 25 | "version-run-all": "yarn workspaces foreach -vpt --no-private run version",
|
26 | 26 | "core": "yarn workspace @segment/analytics-core",
|
27 |
| - "core+deps": "turbo run --filter='analytics-core'", |
| 27 | + "core+deps": "turbo run --filter=@segment/analytics-core...", |
28 | 28 | "browser": "yarn workspace @segment/analytics-next",
|
29 |
| - "browser+deps": "turbo run --filter='analytics-next'", |
| 29 | + "browser+deps": "turbo run --filter=@segment/analytics-next...", |
30 | 30 | "node": "yarn workspace @segment/analytics-node",
|
31 |
| - "node+deps": "turbo run --filter='analytics-node'", |
| 31 | + "node+deps": "turbo run --filter=@segment/analytics-node...", |
32 | 32 | "clean": "bash scripts/clean.sh"
|
33 | 33 | },
|
34 | 34 | "packageManager": "[email protected]",
|
|
0 commit comments