Remove semi-colons from monorepo-scripts package.json

This commit is contained in:
Fabio Berger
2018-04-02 08:51:10 +09:00
parent fab88ea2cc
commit cd23f220a0
2 changed files with 8 additions and 5 deletions

View File

@@ -9,7 +9,7 @@ This repository contains a few helpful scripts for working with this mono repo.
In order to reduce the size of this repo, we try and use the same versions of dependencies between packages. To make it easier to discover version discrepancies between packages, you can run:
```bash
yarn deps_versions
yarn scripts:deps_versions
```
This will list out any dependencies that differ in versions between packages.

View File

@@ -6,12 +6,14 @@
"types": "lib/index.d.ts",
"scripts": {
"build:watch": "tsc -w",
"deps_versions": "node ./lib/deps_versions.js",
"publish": "yarn build; node ./lib/publish.js",
"convert_changelogs": "yarn build; node ./lib/convert_changelogs.js",
"lint": "tslint --project . 'src/**/*.ts'",
"clean": "shx rm -rf lib",
"build": "tsc"
"build": "tsc",
"publish": "run-s build script:publish",
"convert_changelogs": "run-s build script:convert_changelogs",
"script:deps_versions": "node ./lib/deps_versions.js",
"script:publish": "node ./lib/publish.js",
"script:convert_changelogs": "node ./lib/convert_changelogs.js"
},
"repository": {
"type": "git",
@@ -30,6 +32,7 @@
"@types/node": "^8.0.53",
"@types/rimraf": "^2.0.2",
"lerna-get-packages": "^1.0.0",
"npm-run-all": "^4.1.2",
"shx": "^0.2.2",
"tslint": "5.8.0",
"typescript": "2.7.1"