Skip to content

Commit

Permalink
Promote dev to main for 1.5.3 release (#294)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmrdavid authored Nov 22, 2021
1 parent 569c14e commit b37999f
Show file tree
Hide file tree
Showing 7 changed files with 2,107 additions and 8,865 deletions.
3 changes: 2 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
"rules": {
"@typescript-eslint/no-use-before-define": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/interface-name-prefix": "off"
"@typescript-eslint/interface-name-prefix": "off",
"@typescript-eslint/ban-types": "off"
},
"overrides": [
{
Expand Down
6,201 changes: 1,068 additions & 5,133 deletions package-lock.json

Large diffs are not rendered by default.

21 changes: 10 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "durable-functions",
"version": "1.5.2",
"version": "1.5.3",
"description": "Durable Functions library for Node.js Azure Functions",
"license": "MIT",
"repository": {
Expand All @@ -25,9 +25,9 @@
"lint:testfix": "eslint --ext .ts,.json test/ --fix",
"lint:samplesfix": "eslint --ext .ts,.js samples/ --fix",
"build": "npm install && npm run clean && npm run lint && npm run lint:test && npx tsc && npm run stripInternalDocs && echo Done",
"build:samples": "npm --prefix samples run-script build",
"build:samples": "npm --prefix samples run build",
"build:prod": "npm install --production",
"validate:samples": "npm run build:prod && npm --prefix samples install && npm run build:samples",
"validate:samples": "npm run build && npm --prefix samples install && npm run build:samples",
"build:nolint": "npm run clean && npm run stripInternalDocs && echo Done",
"stripInternalDocs": "tsc --pretty -p tsconfig.nocomments",
"test": "npm run validate:samples && npm run build && mocha --recursive ./lib/test/**/*-spec.js",
Expand All @@ -50,7 +50,7 @@
"rimraf": "~2.5.4",
"typedoc": "^0.17.1",
"uuid": "~3.3.2",
"validator": "~10.8.0"
"validator": "~13.7.0"
},
"devDependencies": {
"@types/chai": "~4.1.6",
Expand All @@ -62,19 +62,18 @@
"@types/nock": "^9.3.0",
"@types/rimraf": "0.0.28",
"@types/sinon": "~5.0.5",
"@typescript-eslint/eslint-plugin": "^2.21.0",
"@typescript-eslint/parser": "^2.21.0",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"chai": "~4.2.0",
"chai-as-promised": "~7.1.1",
"chai-string": "~1.5.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"mocha": "~7.1.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.4.1",
"mocha": "^9.1.3",
"moment": "~2.22.2",
"nock": "^10.0.6",
"prettier": "^2.0.5",
"prettier-eslint": "11.0.0",
"sinon": "~7.1.1",
"ts-node": "^10.0.0",
"typescript": "^3.8.3"
Expand Down
20 changes: 13 additions & 7 deletions samples/UnitTesting/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit b37999f

Please sign in to comment.