@rsdk/prettier-config 2.4.0

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +68 -0
  2. package/index.js +5 -0
  3. package/package.json +10 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,68 @@
1
+ # Change Log
2
+
3
+ All notable changes to this project will be documented in this file.
4
+ See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
+
6
+ # [2.4.0](https://github.com/R-Vision/rsdk/compare/v2.3.1...v2.4.0) (2023-06-15)
7
+
8
+ ### Features
9
+
10
+ * change publish config for eslint-plugin, prettier-config, tsconfig ([def7140](https://github.com/R-Vision/rsdk/commit/def714063af0236f35a4290ffc168af4d4037247))
11
+
12
+ # [2.0.0](https://github.com/R-Vision/rsdk/compare/v1.0.12...v2.0.0) (2023-06-06)
13
+
14
+ **Note:** Version bump only for package @rsdk/prettier-config
15
+
16
+ ## 1.0.12 (2023-05-23)
17
+
18
+ ### Bug Fixes
19
+
20
+ * remove private dependencies from `peerDependencies` section ([0bce6ff](https://github.com/R-Vision/rsdk/commit/0bce6ffb5b699e2ed1dc9aca77cbdbf085267ff7))
21
+
22
+ ## 1.0.11 (2023-05-23)
23
+
24
+ **Note:** Version bump only for package @rsdk/prettier-config
25
+
26
+ ## 1.0.10 (2023-05-22)
27
+
28
+ ### Bug Fixes
29
+
30
+ * add "access: public" to new packages ([04d5983](https://github.com/R-Vision/rsdk/commit/04d5983cfa3e97c5d8219e07208a0499a8c6bc83))
31
+
32
+ ## 1.0.9 (2023-05-21)
33
+
34
+ **Note:** Version bump only for package @rsdk/prettier-config
35
+
36
+ ## 1.0.8 (2023-05-17)
37
+
38
+ **Note:** Version bump only for package @rsdk/prettier-config
39
+
40
+ ## 1.0.7 (2023-05-11)
41
+
42
+ **Note:** Version bump only for package @rsdk/prettier-config
43
+
44
+ ## 1.0.6 (2023-05-11)
45
+
46
+ **Note:** Version bump only for package @rsdk/prettier-config
47
+
48
+ ## 1.0.5 (2023-05-10)
49
+
50
+ **Note:** Version bump only for package @rsdk/prettier-config
51
+
52
+ ## 1.0.4 (2023-05-10)
53
+
54
+ **Note:** Version bump only for package @rsdk/prettier-config
55
+
56
+ ## 1.0.3 (2023-05-10)
57
+
58
+ ### Bug Fixes
59
+
60
+ * builtin make not private in npm ([50c83b6](https://github.com/R-Vision/rsdk/commit/50c83b6454f9a89f1e99d3b33a497ce2c029d8c6))
61
+
62
+ ## 1.0.2 (2023-05-10)
63
+
64
+ **Note:** Version bump only for package @rsdk/prettier-config
65
+
66
+ ## 1.0.1 (2023-05-07)
67
+
68
+ **Note:** Version bump only for package @rsdk/prettier-config
package/index.js ADDED
@@ -0,0 +1,5 @@
1
+ module.exports = {
2
+ singleQuote: true,
3
+ trailingComma: 'all',
4
+ printWidth: 80,
5
+ };
package/package.json ADDED
@@ -0,0 +1,10 @@
1
+ {
2
+ "name": "@rsdk/prettier-config",
3
+ "license": "Apache License 2.0",
4
+ "version": "2.4.0",
5
+ "main": "index.js",
6
+ "publishConfig": {
7
+ "access": "public"
8
+ },
9
+ "gitHead": "2c2c1eac3027955838c0883ca1cb76b051a541ed"
10
+ }