Skip to content
This repository has been archived by the owner on Jul 8, 2024. It is now read-only.

Commit

Permalink
fix: templates and package versions
Browse files Browse the repository at this point in the history
  • Loading branch information
JamilOmar committed Mar 5, 2020
1 parent 473a72b commit 1498256
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 2 deletions.
17 changes: 15 additions & 2 deletions templates/cli-package/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,25 +33,38 @@
"license": "MIT",
"dependencies": {
"inquirer": "^7.0.4",
"typescript": "^3.7.5",
"yargs": "^15.1.0"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@labshare/semantic-release-config": "^1.1.2",
"@types/mocha": "^7.0.1",
"@types/yargs": "^15.0.3",
"@typescript-eslint/eslint-plugin": "^2.20.0",
"@typescript-eslint/parser": "^2.20.0",
"@types/mocha": "^7.0.1",
"assert": "^2.0.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-eslint-plugin": "^2.2.1",
"eslint-plugin-mocha": "^6.2.2",
"husky": "^4.2.3",
"lint-staged": "^10.0.8",
"mocha": "^7.0.1",
"nyc": "^15.0.0",
"prettier": "1.19.1",
"source-map-support": "^0.5.16",
"ts-node": "^8.6.2",
"typescript": "^3.8.3"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": "npm run lint:fix"
}
}
2 changes: 2 additions & 0 deletions templates/common/_commitlintrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
extends:
- '@commitlint/config-conventional'
14 changes: 14 additions & 0 deletions templates/ui-package/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,9 @@
"@angular/cli": "~8.3.14",
"@angular/compiler-cli": "~8.2.11",
"@angular/language-service": "~8.2.11",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@labshare/semantic-release-config": "^1.1.2",
"@pnp/common": "^1.3.6",
"@pnp/logging": "^1.3.6",
"@pnp/nodejs": "^1.3.6",
Expand All @@ -72,18 +75,29 @@
"codelyzer": "^5.0.0",
"cordova": "~9.0.0",
"electron": "~5.0.0",
"husky": "^4.2.3",
"jasmine-core": "~3.4.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~4.1.0",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~2.0.1",
"karma-jasmine": "~2.0.1",
"karma-jasmine-html-reporter": "^1.4.0",
"lint-staged": "^10.0.8",
"powershell": "^2.3.1",
"prettier": "1.19.1",
"protractor": "~5.4.0",
"ts-node": "~7.0.0",
"tslint": "~5.15.0",
"typescript": "~3.5.3"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js,css,md,html}": "npm run lint:fix"
}
}

0 comments on commit 1498256

Please sign in to comment.