Skip to content

Commit 7135315

Browse files
Michael Durlingmdurlingavatarneil
authored
KTLO: Switch package manager from yarn to pnpm (#535)
* Initial attempt at switching from yarn to pnpm * Fix typeorm CLI path * Fix package.json dependency ordering * Webpack and tsc symlink settings are opposites * Resolve symlinks to their target modules * Script to run "pnpm audit" post install * Improve audit output * Clean up audit output * Revert accidental webpack upgrade * Rearrange scripts * Rework lerna config to use npm * Update READMEs * --use-spawn-wrap for nyc error on Windows * Add missing dev dependencies * Fix debug config for jest unit test * Updated check-advisories script * Update root scripts * Make webpack plugin work on windows * Clean up install scripts * Use pnpm workspace: protocol * Audit package dependencies for vulnerabilities * Use save-workspace-protocol = false * KTLO: Keep package.json properties sorted (#537) * Use Prettier plugin to keep package.json sorted * KTLO: Improve eslint performance (#538) * Improve linting performance * Update husky and use pre-commit/lint-staged * pre-commit + lint-staged * Add pre-commit filename check * lint-staged in development; full lint on Jenkins * Fix Jenkinsfile * Run pnpm audit on package.json changes * eslint-plugin-progress "off" * Use "jest --passWithNoTests" instead of "exit 0" * Remove redundant geojson modules * Reorganize test areas modules Co-authored-by: mdurling <[email protected]> Co-authored-by: Neil Goldader <[email protected]>
1 parent dfc43a3 commit 7135315

File tree

153 files changed

+14593
-39465
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

153 files changed

+14593
-39465
lines changed

.eslintignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
packages/mds-test-data/test-areas/

.eslintrc.json

+9-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,14 @@
44
"es6": true,
55
"mocha": true
66
},
7-
"plugins": ["import", "prettier", "@typescript-eslint", "promise"],
7+
"plugins": [
8+
"import",
9+
"prettier",
10+
"@typescript-eslint",
11+
"promise",
12+
"log",
13+
"progress"
14+
],
815
"parser": "@typescript-eslint/parser",
916
"parserOptions": {
1017
"ecmaVersion": 2018,
@@ -49,6 +56,7 @@
4956
"no-useless-constructor": "off",
5057
"no-var": "error",
5158
"prettier/prettier": "warn",
59+
"progress/activate": "off",
5260
"promise/always-return": "error",
5361
"promise/avoid-new": "off",
5462
"promise/catch-or-return": "error",

.gitignore

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
.npmrc
21
.tern-project
32
mds-*.zip
43
dist
54
dump.rdb
65

7-
# This project uses Yarn. Ignore npm lock files
6+
# This project uses pnpm. Ignore npm/yarn lock files
87
package-lock.json
98
npm-shrinkwrap.json
9+
yarn.lock
1010

1111
# Created by https://www.gitignore.io/api/osx,node,windows,serverless,sublimetext,visualstudiocode
1212
# Edit at https://www.gitignore.io/?templates=osx,node,windows,serverless,sublimetext,visualstudiocode
@@ -19,6 +19,7 @@ npm-debug.log*
1919
yarn-debug.log*
2020
yarn-error.log*
2121
lerna-debug.log*
22+
.pnpm-debug.log*
2223

2324
# Diagnostic reports (https://nodejs.org/api/report.html)
2425
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

.husky/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
_

.husky/pre-commit

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/bin/sh
2+
. "$(dirname "$0")/_/husky.sh"
3+
4+
pnpx --no-install lint-staged
5+
pre-commit

.huskyrc.json

-5
This file was deleted.

.iyarc

-4
This file was deleted.

.lintstagedrc.json

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"*.ts": "pnpm lint:eslint -- --fix",
3+
"package.json": ["pnpm lint:prettier -- --write ", "pnpm lint:audit"]
4+
}

.npmrc

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
link-workspace-packages = true
2+
prefer-workspace-packages = true
3+
recursive-install = true
4+
save-exact = true
5+
save-workspace-protocol = false
6+
scripts-prepend-node-path = true
7+
shared-workspace-shrinkwrap = true

.pre-commit-config.yaml

+9-8
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
repos:
2-
- repo: https://github.com/pre-commit/pre-commit-hooks
3-
rev: v2.3.0
4-
hooks:
5-
- id: trailing-whitespace
6-
- id: detect-aws-credentials
7-
args: [--allow-missing-credentials]
8-
- id: detect-private-key
9-
- id: check-merge-conflict
2+
- repo: https://github.com/pre-commit/pre-commit-hooks
3+
rev: v2.3.0
4+
hooks:
5+
- id: trailing-whitespace
6+
- id: detect-aws-credentials
7+
args: [--allow-missing-credentials]
8+
- id: detect-private-key
9+
- id: check-merge-conflict
10+
- id: check-case-conflict

.prettierrc.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,6 @@
1111
"singleQuote": true
1212
}
1313
}
14-
]
14+
],
15+
"plugins": ["./node_modules/prettier-plugin-packagejson"]
1516
}

.vscode/launch.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -416,7 +416,7 @@
416416
"request": "launch",
417417
"runtimeArgs": [
418418
"--inspect-brk",
419-
"${workspaceRoot}/node_modules/.bin/jest",
419+
"${workspaceRoot}/node_modules/jest/bin/jest",
420420
"--runInBand",
421421
"--coverage",
422422
"false"
@@ -459,7 +459,7 @@
459459
"request": "launch",
460460
"runtimeArgs": [
461461
"--inspect-brk",
462-
"${workspaceRoot}/node_modules/.bin/jest",
462+
"${workspaceRoot}/node_modules/jest/bin/jest",
463463
"--runInBand",
464464
"--coverage",
465465
"false"
@@ -593,7 +593,7 @@
593593
"request": "launch",
594594
"runtimeArgs": [
595595
"--inspect-brk",
596-
"${workspaceRoot}/node_modules/.bin/jest",
596+
"${workspaceRoot}/node_modules/jest/bin/jest",
597597
"--runInBand",
598598
"--coverage",
599599
"false"
@@ -613,7 +613,7 @@
613613
"request": "launch",
614614
"runtimeArgs": [
615615
"--inspect-brk",
616-
"${workspaceRoot}/node_modules/.bin/jest",
616+
"${workspaceRoot}/node_modules/jest/bin/jest",
617617
"--runInBand",
618618
"--coverage",
619619
"false"
@@ -656,7 +656,7 @@
656656
"request": "launch",
657657
"runtimeArgs": [
658658
"--inspect-brk",
659-
"${workspaceRoot}/node_modules/.bin/jest",
659+
"${workspaceRoot}/node_modules/jest/bin/jest",
660660
"--runInBand",
661661
"--coverage",
662662
"false"
@@ -744,7 +744,7 @@
744744
"request": "launch",
745745
"runtimeArgs": [
746746
"--inspect-brk",
747-
"${workspaceRoot}/node_modules/.bin/jest",
747+
"${workspaceRoot}/node_modules/jest/bin/jest",
748748
"--runInBand",
749749
"--coverage",
750750
"false"
@@ -786,7 +786,7 @@
786786
"request": "launch",
787787
"runtimeArgs": [
788788
"--inspect-brk",
789-
"${workspaceRoot}/node_modules/.bin/jest",
789+
"${workspaceRoot}/node_modules/jest/bin/jest",
790790
"--runInBand",
791791
"--coverage",
792792
"false"

.yarnrc

-1
This file was deleted.

.yvmrc

-1
This file was deleted.

@types/la-city-boundary.d.ts

-1
This file was deleted.

Jenkinsfile

+4-4
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ pipeline {
1717
steps {
1818
nvm('version': 'v14.2.0') {
1919
sh '''
20-
yarn clean && yarn build
20+
pnpm clean && pnpm build
2121
'''
2222
}
2323
}
@@ -52,9 +52,9 @@ pipeline {
5252
}
5353
trap cleanup EXIT
5454
55-
yarn clean
56-
PG_NAME=postgres PG_HOST=localhost PG_USER=postgres REDIS_HOST=localhost yarn test:eslint
57-
PG_NAME=postgres PG_HOST=localhost PG_USER=postgres REDIS_HOST=localhost yarn test:unit
55+
pnpm clean
56+
pnpm lint
57+
PG_NAME=postgres PG_HOST=localhost PG_USER=postgres REDIS_HOST=localhost pnpm test
5858
'''
5959
}
6060
}

README.md

+9-45
Original file line numberDiff line numberDiff line change
@@ -84,68 +84,32 @@ Then add `export PG_NAME=mdstest` to your shell's environment file. (The name i
8484

8585
You should have NVM already installed from the link above. The top level directory of the project has a `.nvmrc` file and you should be able to run `nvm install` to get the right version of Node.
8686

87-
#### Package setup
88-
Install [Lerna](https://lerna.js.org/)
87+
#### Package manager setup
88+
Install [pnpm](https://pnpm.js.org/)
8989

9090
```sh
91-
yarn global add lerna
91+
npm install -g pnpm
9292
```
9393

94-
Install all packages. Uses Yarn workspaces.
94+
Install all packages. Uses pnpm workspaces.
9595

9696
```sh
97-
yarn install
97+
pnpm install
9898
```
9999

100100
#### Launching a local server for a package
101101
Now you can work with each package
102102

103103
```sh
104104
cd packages/mds-audit
105-
yarn test
106-
yarn start
105+
pnpm test
106+
pnpm start
107107
```
108108

109109
#### Running the tests
110110
You can also run all tests from the project root with
111111
```
112-
yarn test
113-
```
114-
115-
### Package Management - Lerna
116-
117-
This repository is a monorepo and uses Lerna for working with its packages.
118-
119-
#### Example commands
120-
121-
Run all test suites at once
122-
123-
```sh
124-
lerna run test
125-
```
126-
127-
Run all tests suites sequentially
128-
129-
```sh
130-
lerna run test --concurrency 1
131-
```
132-
133-
Run tests for a particular package
134-
135-
```sh
136-
lerna run test --scope mds-audit
137-
```
138-
139-
Clean all dependencies
140-
141-
```sh
142-
lerna run clean
143-
```
144-
145-
Format all files
146-
147-
```sh
148-
lerna run prettier
112+
pnpm test
149113
```
150114

151115
## Debugging with Visual Studio Code
@@ -247,7 +211,7 @@ This will run the build, and create the docker container images.
247211

248212
```sh
249213
yarn clean
250-
NODE_ENV=development yarn image
214+
NODE_ENV=development pnpm image
251215
```
252216

253217
note that setting `NODE_ENV=development` will enable images to be built with the `:latest` tag instead of a specific version-branch-commit tag. If you choose not to use this, the images will be built with tags matching the format `:version-branch-commit`. You can generate a manifest with these image tags by running `yarn values`. This manifest can be included in a helm install with the switch `--values dist/values.yaml`.

container-images/mds-agency/package.json

+10-12
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,25 @@
11
{
22
"name": "@container-images/mds-agency",
33
"version": "0.1.26",
4-
"description": "Docker Image for MDS Agency API",
54
"private": true,
5+
"description": "Docker Image for MDS Agency API",
6+
"keywords": [
7+
"mds"
8+
],
9+
"license": "Apache-2.0",
10+
"author": "City of Los Angeles",
611
"main": "dist/index.js",
712
"files": [
813
"dist/"
914
],
1015
"scripts": {
16+
"bundle": "pnpm bundle:production",
1117
"bundle:development": "webpack --mode=development --env npm_package_name=${npm_package_name} --env npm_package_version=${npm_package_version}",
1218
"bundle:production": "webpack --mode=production --env npm_package_name=${npm_package_name} --env npm_package_version=${npm_package_version}",
13-
"bundle": "yarn bundle:production",
14-
"image:development": "yarn bundle:development && ../../bin/build-helper buildImage mds-agency:${npm_package_version}",
15-
"image:production": "yarn bundle:production && ../../bin/build-helper buildImage mds-agency:${npm_package_version}",
16-
"image": "yarn image:production",
17-
"test": "yarn test:eslint",
18-
"test:eslint": "eslint --ignore-path ../../.gitignore '**/*.ts'"
19+
"image": "pnpm image:production",
20+
"image:development": "pnpm bundle:development && ../../bin/build-helper buildImage mds-agency:${npm_package_version}",
21+
"image:production": "pnpm bundle:production && ../../bin/build-helper buildImage mds-agency:${npm_package_version}"
1922
},
20-
"keywords": [
21-
"mds"
22-
],
23-
"author": "City of Los Angeles",
24-
"license": "Apache-2.0",
2523
"dependencies": {
2624
"@mds-core/mds-agency": "0.0.28",
2725
"@mds-core/mds-webpack-config": "0.1.0"

container-images/mds-agency/tsconfig.eslint.json

-1
This file was deleted.

container-images/mds-attachment-service/package.json

+10-12
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,25 @@
11
{
22
"name": "@container-images/mds-attachment-service",
33
"version": "0.0.1",
4-
"description": "Docker Image for MDS Attachment Service",
54
"private": true,
5+
"description": "Docker Image for MDS Attachment Service",
6+
"keywords": [
7+
"mds"
8+
],
9+
"license": "Apache-2.0",
10+
"author": "City of Los Angeles",
611
"main": "dist/index.js",
712
"files": [
813
"dist/"
914
],
1015
"scripts": {
16+
"bundle": "pnpm bundle:production",
1117
"bundle:development": "webpack --mode=development --env npm_package_name=${npm_package_name} --env npm_package_version=${npm_package_version}",
1218
"bundle:production": "webpack --mode=production --env npm_package_name=${npm_package_name} --env npm_package_version=${npm_package_version}",
13-
"bundle": "yarn bundle:production",
14-
"image:development": "yarn bundle:development && ../../bin/build-helper buildImage mds-attachment-service:${npm_package_version}",
15-
"image:production": "yarn bundle:production && ../../bin/build-helper buildImage mds-attachment-service:${npm_package_version}",
16-
"image": "yarn image:production",
17-
"test": "yarn test:eslint",
18-
"test:eslint": "eslint --ignore-path ../../.gitignore '**/*.ts'"
19+
"image": "pnpm image:production",
20+
"image:development": "pnpm bundle:development && ../../bin/build-helper buildImage mds-attachment-service:${npm_package_version}",
21+
"image:production": "pnpm bundle:production && ../../bin/build-helper buildImage mds-attachment-service:${npm_package_version}"
1922
},
20-
"keywords": [
21-
"mds"
22-
],
23-
"author": "City of Los Angeles",
24-
"license": "Apache-2.0",
2523
"dependencies": {
2624
"@mds-core/mds-attachment-service": "0.1.0",
2725
"@mds-core/mds-webpack-config": "0.1.0"

container-images/mds-attachment-service/tsconfig.eslint.json

-1
This file was deleted.

0 commit comments

Comments
 (0)