Skip to content

Commit

Permalink
chore: alphabetize package.json scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
mariuslundgard authored and rexxars committed Sep 23, 2022
1 parent 2778e0c commit 8090909
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"packages/sanity"
],
"scripts": {
"__wip_smoke-test:cli": "yarn build && yarn publish:tarball && node -r esbuild-register test/smoke-test/cli.ts",
"bootstrap": "yarn install && yarn build:dts && yarn build:cli",
"build": "lerna run --scope '{@sanity/*,groq,sanity}' build",
"build:cli": "run-s build",
Expand Down Expand Up @@ -40,26 +41,25 @@
"init": "lerna clean --yes && run-s bootstrap build",
"lerna:clean": "lerna clean",
"lint": "yarn eslint .",
"lint:fix": "eslint . --quiet --fix",
"lint-next": "yarn eslint `git diff --name-only next --diff-filter ACMRTUXB`",
"lint:fix": "eslint . --quiet --fix",
"normalize-pkgfields": "node scripts/normalizePackageFields.js",
"postinstall": "husky install",
"prettier": "prettier '**/*.{ts,js,tsx,jsx}'",
"prettify": "lerna run clean && yarn prettier --write",
"prettify:dts": "prettier --loglevel warn --write packages/@sanity/*/lib/dts && prettier --loglevel warn --write packages/*/lib/dts",
"publish-dev-preview": "yarn build && lerna publish --force-publish --dist-tag=dev-preview --preid=dev-preview --exact",
"publish-purple-unicorn": "RELEASE_TAG=purple-unicorn yarn publish-tag",
"publish-when-v3-is-ready": "yarn build && lerna publish --exact",
"publish-canary": "RELEASE_TAG=canary yarn publish-tag",
"publish-current-branch": "RELEASE_TAG=`git rev-parse --abbrev-ref HEAD | sed 's/\\//\\_/g'` yarn publish-tag",
"publish-dev-preview": "yarn build && lerna publish --force-publish --dist-tag=dev-preview --preid=dev-preview --exact",
"publish-purple-unicorn": "RELEASE_TAG=purple-unicorn yarn publish-tag",
"publish-tag": "RELEASE_TAG=\"${RELEASE_TAG:-canary}\"; yarn build && lerna publish --canary --force-publish --no-git-tag-version --dist-tag=$RELEASE_TAG --preid=$RELEASE_TAG --exact",
"publish-when-v3-is-ready": "yarn build && lerna publish --exact",
"publish:tarball": "node -r esbuild-register scripts/publish/tarball",
"release-notes": "node scripts/printReleaseNotesTemplate.js",
"start": "yarn dev:test-studio",
"test": "jest",
"test-e2e": "start-server-and-test build-and-serve http://localhost:3333 'yarn cypress:run'",
"test-perf": "start-server-and-test perf-studio http://localhost:3344 'ts-node -r dotenv/config perf/suite'",
"__wip_smoke-test:cli": "yarn build && yarn publish:tarball && node -r esbuild-register test/smoke-test/cli.ts",
"type-check": "tsc --build",
"updated": "lerna updated",
"vercel-build": "yarn build:cli && (cd dev/test-studio && yarn build)",
Expand Down

0 comments on commit 8090909

Please sign in to comment.