@cocreate/authenticate 1.9.4 → 1.10.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.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,15 @@
1
+ # [1.10.0](https://github.com/CoCreate-app/CoCreate-authenticate/compare/v1.9.4...v1.10.0) (2024-11-04)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * prettier.config options ([35deb04](https://github.com/CoCreate-app/CoCreate-authenticate/commit/35deb0404cd9bf16d58fc2b8da9418cdd9fb28ca))
7
+
8
+
9
+ ### Features
10
+
11
+ * add prettier.config.js and format files ([1edb5cc](https://github.com/CoCreate-app/CoCreate-authenticate/commit/1edb5cc404b277a9e8237f93a31e319770746b80))
12
+
1
13
  ## [1.9.4](https://github.com/CoCreate-app/CoCreate-authenticate/compare/v1.9.3...v1.9.4) (2024-10-31)
2
14
 
3
15
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cocreate/authenticate",
3
- "version": "1.9.4",
3
+ "version": "1.10.0",
4
4
  "description": "A simple authenticate component in vanilla javascript. Easily configured using HTML5 data-attributes and/or JavaScript API.",
5
5
  "keywords": [
6
6
  "authenticate",
@@ -0,0 +1,16 @@
1
+ module.exports = {
2
+ tabWidth: 4,
3
+ semi: true,
4
+ trailingComma: "none",
5
+ bracketSameLine: true,
6
+ useTabs: true,
7
+ overrides: [
8
+ {
9
+ files: ["*.json", "*.yml", "*.yaml"],
10
+ options: {
11
+ tabWidth: 2,
12
+ useTabs: false
13
+ },
14
+ }
15
+ ],
16
+ };