Skip to content

Commit

Permalink
Remove turbo from monorepo commands until it's really necessary (#5715)
Browse files Browse the repository at this point in the history
  • Loading branch information
sneridagh authored Jan 30, 2024
1 parent c40962c commit 97c1bfb
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 10 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ cypress-install:

.PHONY: build-deps
build-deps:
pnpm build:deps
if [ ! -d $$(pwd)/registry/dist ]; then (pnpm build:deps); fi

##### Release

Expand Down
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
"postinstall": "make setup",
"watch": "turbo run watch",
"build:deps": "turbo run build --filter @plone/registry --filter @plone/client",
"build:registry": "turbo run build --filter @plone/registry",
"build": "pnpm build:registry && pnpm --filter @plone/volto build",
"start": "pnpm build:registry && pnpm --filter @plone/volto start",
"start:project": "turbo run start --filter plone",
"build:registry": "pnpm --filter @plone/registry run build",
"build": "pnpm build:deps && pnpm --filter @plone/volto build",
"start": "pnpm build:deps && pnpm --filter @plone/volto start",
"start:project": "pnpm --filter plone run start",
"lint": "pnpm build:deps && eslint --max-warnings=0 '{apps,packages}/**/*.{js,jsx,ts,tsx}'",
"lint:volto": "turbo run lint --filter @plone/volto",
"test": "turbo run test:ci --filter @plone/volto",
"i18n": "turbo run i18n --filter @plone/volto",
"i18n:ci": "turbo run i18n:ci --filter @plone/volto",
"lint:volto": "pnpm --filter @plone/volto run lint",
"test": "pnpm --filter @plone/volto run test:ci",
"i18n": "pnpm --filter @plone/volto run i18n",
"i18n:ci": "pnpm --filter @plone/volto i18n:ci",
"prettier": "prettier --check '{apps,packages}/**/*.{js,jsx,ts,tsx}'",
"prettier:fix": "prettier --write '{apps,packages}/**/*.{js,jsx,ts,tsx}' ",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
Expand Down
1 change: 1 addition & 0 deletions packages/volto/news/5715.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Remove turbo from monorepo commands until it's really necessary @sneridagh
4 changes: 3 additions & 1 deletion packages/volto/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -340,17 +340,19 @@
"use-deep-compare-effect": "1.8.1",
"uuid": "^8.3.2",
"webpack": "5.76.1",
"webpack-bundle-analyzer": "4.10.1",
"webpack-dev-server": "4.11.1",
"webpack-node-externals": "3.0.0",
"webpack-bundle-analyzer": "4.10.1",
"xmlrpc": "1.3.2",
"yarnhook": "0.5.1"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@plone/volto-coresandbox": "workspace:*",
"@sinonjs/fake-timers": "^6.0.1",
"@storybook/addon-actions": "^6.5.15",
"@storybook/addon-controls": "6.5.15",
"@storybook/addon-docs": "^6.5.15",
"@storybook/addon-essentials": "^6.5.15",
"@storybook/addon-links": "^6.5.15",
"@storybook/builder-webpack5": "^6.5.15",
Expand Down
6 changes: 6 additions & 0 deletions pnpm-lock.yaml

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

0 comments on commit 97c1bfb

Please sign in to comment.