@taiga-ui/cspell-config 0.14.0 → 0.16.2

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
@@ -3,6 +3,43 @@
3
3
  All notable changes to this project will be documented in this file. See
4
4
  [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [0.16.2](https://github.com/taiga-family/linters/compare/@taiga-ui/cspell-config@0.16.1...@taiga-ui/cspell-config@0.16.2) (2023-10-17)
7
+
8
+ **Note:** Version bump only for package @taiga-ui/cspell-config
9
+
10
+ # Change Log
11
+
12
+ All notable changes to this project will be documented in this file. See
13
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
14
+
15
+ ## [0.16.1](https://github.com/taiga-family/linters/compare/@taiga-ui/cspell-config@0.16.0...@taiga-ui/cspell-config@0.16.1) (2023-10-17)
16
+
17
+ **Note:** Version bump only for package @taiga-ui/cspell-config
18
+
19
+ # [0.16.0](https://github.com/taiga-family/linters/compare/@taiga-ui/cspell-config@0.15.0...@taiga-ui/cspell-config@0.16.0) (2023-10-17)
20
+
21
+ ### Features
22
+
23
+ - **tsconfig:** add `@taiga-ui/tsconfig`
24
+ ([a384eca](https://github.com/taiga-family/linters/commit/a384ecac1e036a66d5a7e95f9bb6790f34a592d9))
25
+
26
+ # Change Log
27
+
28
+ All notable changes to this project will be documented in this file. See
29
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
30
+
31
+ # [0.15.0](https://github.com/taiga-family/taiga-ui/compare/@taiga-ui/cspell-config@0.14.0...@taiga-ui/cspell-config@0.15.0) (2023-10-10)
32
+
33
+ ### Features
34
+
35
+ - **cspell-config:** add `callout` word
36
+ ([3576425](https://github.com/taiga-family/taiga-ui/commit/3576425f5e14dfa22d0052b45861a7ad4b292cd6))
37
+
38
+ # Change Log
39
+
40
+ All notable changes to this project will be documented in this file. See
41
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
42
+
6
43
  # [0.14.0](https://github.com/taiga-family/taiga-ui/compare/@taiga-ui/cspell-config@0.13.0...@taiga-ui/cspell-config@0.14.0) (2023-10-08)
7
44
 
8
45
  ### Features
@@ -50,6 +50,7 @@
50
50
  "uzcard",
51
51
  "userpic",
52
52
  "dont",
53
- "сhar"
53
+ "сhar",
54
+ "callout"
54
55
  ]
55
56
  }
package/cspell.config.js CHANGED
@@ -5,6 +5,7 @@ module.exports = {
5
5
  caseSensitive: false,
6
6
  useGitignore: true,
7
7
  files: ['*/*.*'],
8
+ ignorePaths: ['CHANGELOG.md'],
8
9
  import: [
9
10
  './configs/locales/latin.json',
10
11
  './configs/locales/dutch.json',
package/package.json CHANGED
@@ -1,20 +1,20 @@
1
1
  {
2
2
  "name": "@taiga-ui/cspell-config",
3
- "version": "0.14.0",
3
+ "version": "0.16.2",
4
4
  "description": "Taiga UI cspell config",
5
5
  "keywords": [
6
6
  "cspell"
7
7
  ],
8
8
  "repository": {
9
9
  "type": "git",
10
- "url": "https://github.com/taiga-family/taiga-ui.git"
10
+ "url": "https://github.com/taiga-family/linters.git"
11
11
  },
12
12
  "license": "Apache-2.0",
13
13
  "main": "cspell.config.js",
14
14
  "dependencies": {
15
15
  "@cspell/dict-ar": "1.1.0",
16
16
  "@cspell/dict-lorem-ipsum": "4.0.0",
17
- "@cspell/dict-ru_ru": "2.1.0",
17
+ "@cspell/dict-ru_ru": "2.1.1",
18
18
  "@cspell/dict-scientific-terms-us": "3.0.0"
19
19
  },
20
20
  "peerDependencies": {
package/project.json DELETED
@@ -1,15 +0,0 @@
1
- {
2
- "name": "cspell-config",
3
- "$schema": "../../node_modules/nx/schemas/project-schema.json",
4
- "sourceRoot": "projects/cspell-config",
5
- "projectType": "library",
6
- "prefix": "tui",
7
- "targets": {
8
- "publish": {
9
- "executor": "nx:run-commands",
10
- "options": {
11
- "command": "npm publish ./projects/cspell-config --access=public --ignore-scripts || echo \"already published\""
12
- }
13
- }
14
- }
15
- }