diff --git a/package.json b/package.json index 26652a3eb..122ad0751 100644 --- a/package.json +++ b/package.json @@ -17,7 +17,7 @@ "test": "yarn workspaces foreach -pt --parallel --jobs 10 --verbose --exclude @standardnotes/components-meta run test", "clean": "lerna run clean", "build:all": "yarn workspaces foreach -pt --verbose --exclude @standardnotes/components-meta run build", - "build:components": "yarn workspaces foreach -pt --verbose -R --from @standardnotes/components-meta run build", + "build:components": "yarn workspaces foreach -pt --verbose --interlaced -R --from @standardnotes/components-meta run build", "build:web": "yarn workspaces foreach -pt --verbose -R --from @standardnotes/web --exclude @standardnotes/components-meta run build", "build:desktop": "yarn workspaces foreach -pt --verbose -R --from @standardnotes/desktop --exclude @standardnotes/components-meta run build", "build:mobile": "yarn workspaces foreach -pt --verbose -R --from @standardnotes/mobile --exclude @standardnotes/components-meta run build", diff --git a/packages/components/package.json b/packages/components/package.json index 5061de49d..585e608b4 100644 --- a/packages/components/package.json +++ b/packages/components/package.json @@ -14,7 +14,7 @@ "lint": "yarn workspaces foreach --parallel --jobs 10 --verbose --exclude @standardnotes/components-meta run lint", "format": "yarn workspaces foreach --parallel --jobs 10 --verbose --exclude @standardnotes/components-meta run format", "test": "yarn workspaces foreach --parallel --jobs 10 --verbose --exclude @standardnotes/components-meta run test", - "build": "tsc --project tsconfig.json && yarn workspaces foreach --parallel --jobs 10 --verbose --exclude @standardnotes/components-meta run components:compile", + "build": "tsc --project tsconfig.json && yarn workspaces foreach --parallel --interlaced --jobs 10 --verbose --exclude @standardnotes/components-meta run components:compile", "package": "node scripts/package.mjs", "version": "./scripts/VERSION.sh" }, diff --git a/packages/components/scripts/VERSION.sh b/packages/components/scripts/VERSION.sh index 994ee1cc4..6fbeacfb9 100755 --- a/packages/components/scripts/VERSION.sh +++ b/packages/components/scripts/VERSION.sh @@ -2,7 +2,7 @@ echo 'Building components from' $(pwd) -yarn clean && yarn build +yarn clean && yarn build:components echo "Packaging component assets and zips..."