Skip to content

Commit

Permalink
Fixed some packages version missmatches
Browse files Browse the repository at this point in the history
  • Loading branch information
javiertoledo committed Sep 25, 2023
1 parent 586e30a commit b7f3f66
Show file tree
Hide file tree
Showing 9 changed files with 91 additions and 67 deletions.
139 changes: 81 additions & 58 deletions common/config/rush/pnpm-lock.yaml

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/application-tester/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"lint:check": "eslint --ext '.js,.ts' **/*.ts",
"lint:fix": "eslint --quiet --fix --ext '.js,.ts' **/*.ts",
"build": "tsc -b tsconfig.json",
"clean": "npx rimraf ./dist tsconfig.tsbuildinfo",
"clean": "rimraf ./dist tsconfig.tsbuildinfo",
"prepack": "tsc -b tsconfig.json",
"test": ""
},
Expand Down
4 changes: 2 additions & 2 deletions packages/cli/src/templates/project/package-json.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@ export const template = `{
"main": "dist/index.js",
"repository": "{{{repository}}}",
"scripts": {
"prepare: "ts-patch install -s",
"lint:check": "eslint --ext '.js,.ts' **/*.ts",
"lint:fix": "eslint --quiet --fix --ext '.js,.ts' **/*.ts",
"build": "tsc -b tsconfig.json",
"clean": "rimraf ./dist tsconfig.tsbuildinfo",
"test": "AWS_SDK_LOAD_CONFIG=true BOOSTER_ENV=test nyc --extension .ts mocha --forbid-only \\"test/**/*.test.ts\\""
"clean": "npx rimraf ./dist tsconfig.tsbuildinfo"
},
"types": "lib/index.d.ts"
}`
2 changes: 1 addition & 1 deletion packages/cli/test/fixtures/mock_project/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"@boostercloud/framework-provider-aws-infrastructure": "^1.11.2",
"@boostercloud/rocket-backup-aws-infrastructure": "^1.11.2",
"@boostercloud/rocket-static-sites-aws-infrastructure": "^1.11.2",
"rimraf": "^3.0.1",
"rimraf": "5.0.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^6.8.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,7 @@
"lint:check": "eslint --ext '.js,.ts' **/*.ts",
"lint:fix": "eslint --quiet --fix --ext '.js,.ts' **/*.ts",
"build": "tsc -b tsconfig.json",
"clean": "rimraf ./dist tsconfig.tsbuildinfo",
"test": "AWS_SDK_LOAD_CONFIG=true BOOSTER_ENV=test nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\""
"clean": "rimraf ./dist tsconfig.tsbuildinfo"
},
"types": "lib/index.d.ts"
}
2 changes: 1 addition & 1 deletion packages/framework-integration-tests/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@
"clean": "rimraf ./dist tsconfig.tsbuildinfo *-integration-sandbox",
"postinstall": "rimraf ../../node_modules/serverless/node_modules/archiver && echo 'Deleted buggy \"archiver\" module from \"serveless\" dependencies to use the newer hoisted one'",
"integration": "npm run integration/cli && npm run integration/local && npm run integration/aws && npm run integration/azure",
"integration/cli": "mocha --exit --config \"integration/provider-unaware/cli/.mocharc.yml\" \"integration/provider-unaware/cli/**/*.integration.ts\"",
"integration/cli": "mocha --forbid-only --exit --config \"integration/provider-unaware/cli/.mocharc.yml\" \"integration/provider-unaware/cli/**/*.integration.ts\"",
"integration/aws": "npm run integration/aws-deploy && npm run integration/aws-func && npm run integration/aws-end-to-end && npm run integration/aws-load && npm run integration/aws-nuke",
"integration/aws-deploy": "AWS_SDK_LOAD_CONFIG=true BOOSTER_ENV=production mocha --forbid-only --exit --config \"integration/provider-specific/aws/deployment/.mocharc.yml\" \"integration/provider-specific/aws/deployment/**/*.integration.ts\"",
"integration/aws-func": "TESTED_PROVIDER=AWS AWS_SDK_LOAD_CONFIG=true BOOSTER_ENV=production mocha --forbid-only --exit --config \"integration/provider-unaware/functionality/.mocharc.yml\" \"integration/provider-unaware/functionality/**/*.integration.ts\"",
Expand Down
2 changes: 1 addition & 1 deletion packages/framework-integration-tests/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"outDir": "dist",
"rootDir": "src",
"strict": true,
"target": "es2019",
"target": "ES2019",
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
Expand Down
3 changes: 2 additions & 1 deletion packages/framework-types/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,8 @@
"typescript": "4.7.4",
"prettier": "2.3.0",
"eslint-plugin-unicorn": "~44.0.2",
"graphql": "^16.6.0"
"graphql": "^16.6.0",
"rimraf": "5.0.0"
},
"pnpm": {
"overrides": {
Expand Down
1 change: 1 addition & 0 deletions packages/metadata-booster/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
"typescript": "4.7.4",
"prettier": "2.3.0",
"sinon": "9.2.3",
"rimraf": "5.0.0",
"eslint-plugin-unicorn": "~44.0.2"
},
"scripts": {
Expand Down

0 comments on commit b7f3f66

Please sign in to comment.