@naturalcycles/dev-lib 12.3.0 → 12.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [12.3.1](https://github.com/NaturalCycles/dev-lib/compare/v12.3.0...v12.3.1) (2021-09-17)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * forgot .vue extension in lint-staged.config.js ([f0e0404](https://github.com/NaturalCycles/dev-lib/commit/f0e04045c41b255f6fa2b053da42bc6cd327cc2c))
7
+
1
8
  # [12.3.0](https://github.com/NaturalCycles/dev-lib/compare/v12.2.0...v12.3.0) (2021-09-17)
2
9
 
3
10
 
@@ -37,7 +37,7 @@ const styleLintCmd = `stylelint --fix --config ${stylelintConfigPath}`
37
37
  const linters = {
38
38
  // *.ts files: eslint, tslint, prettier
39
39
  // There are 2 tslint tasks, one without `-p` and the second is with `-p` - it is a speed optimization
40
- './src/**/*.{ts,tsx}': match => {
40
+ './src/**/*.{ts,tsx,vue}': match => {
41
41
  const filesList = micromatch.not(match, lintExclude).join(' ')
42
42
  if (!filesList) return []
43
43
  const filesListNoVue = micromatch.not(filesList, ['**/*.vue']).join(' ')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@naturalcycles/dev-lib",
3
- "version": "12.3.0",
3
+ "version": "12.3.1",
4
4
  "scripts": {
5
5
  "prepare": "husky install",
6
6
  "tsn-debug": "tsn testScript.ts",