Skip to content

Commit

Permalink
chore(rabbitmq): package.json scripts in alphabetical order
Browse files Browse the repository at this point in the history
  • Loading branch information
iccicci committed Jun 16, 2022
1 parent c46d131 commit 6713b66
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions packages/rabbitmq/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,21 +17,21 @@
"author": "Daniele Ricci",
"license": "MPL-2.0",
"scripts": {
"build:esm": "tsc -p src/tsconfig.json --outDir ./dist/esm --module es2020",
"build:cjs": "tsc --build src",
"build:esm": "tsc -p src/tsconfig.json --outDir ./dist/esm --module es2020",
"build": "run-s build:cjs build:esm module-fixup",
"module-fixup": "shx cp ../../build/cjs-package.json ./dist/cjs/package.json && cp ../../build/esm-package.json ./dist/esm/package.json",
"tscNoEmit": "shx echo typescript --noEmit command not implemented yet",
"cleanup:dist": "shx rm -rf dist",
"cleanup:nm": "shx rm -rf node_modules",
"cleanup": "run-s cleanup:dist cleanup:nm",
"lint": "eslint --ignore-path ../../.eslintignore \"**/*.ts\"",
"lint:fix": "eslint --fix --ignore-path ../../.eslintignore \"**/*.ts\"",
"coverage": "yarn test --coverage",
"test": "jest -c ./jest.config.js",
"lint:fix": "eslint --fix --ignore-path ../../.eslintignore \"**/*.ts\"",
"lint": "eslint --ignore-path ../../.eslintignore \"**/*.ts\"",
"module-fixup": "shx cp ../../build/cjs-package.json ./dist/cjs/package.json && cp ../../build/esm-package.json ./dist/esm/package.json",
"prepack": "yarn build",
"test:build:verify": "tsc --build ./test",
"test:e2e": "shx echo 'test:e2e' command not implemented yet",
"prepack": "yarn build"
"test": "jest -c ./jest.config.js --runInBand",
"tscNoEmit": "shx echo typescript --noEmit command not implemented yet"
},
"devDependencies": {
"@cardano-sdk/ogmios": "0.2.0",
Expand Down

0 comments on commit 6713b66

Please sign in to comment.