@cocreate/authenticate 1.0.0 → 1.0.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.
@@ -1,3 +1,3 @@
1
- # These are supported funding model platforms
2
-
3
- github: CoCreate-app
1
+ # These are supported funding model platforms
2
+
3
+ github: CoCreate-app
@@ -1,43 +1,56 @@
1
- name: Automated Deployment
2
- 'on':
3
- push:
4
- branches:
5
- - master
6
- jobs:
7
- about:
8
- runs-on: ubuntu-latest
9
- steps:
10
- - name: Checkout
11
- uses: actions/checkout@v2
12
- - name: Jaid/action-sync-node-meta
13
- uses: jaid/action-sync-node-meta@v1.4.0
14
- with:
15
- direction: overwrite-github
16
- githubToken: '${{ secrets.GITHUB }}'
17
- release:
18
- runs-on: ubuntu-latest
19
- steps:
20
- - name: Checkout
21
- uses: actions/checkout@v3
22
- - name: Semantic Release
23
- uses: cycjimmy/semantic-release-action@v3
24
- id: semantic
25
- with:
26
- extra_plugins: |
27
- @semantic-release/changelog
28
- @semantic-release/git
29
- @semantic-release/github
30
- env:
31
- GITHUB_TOKEN: '${{ secrets.GITHUB }}'
32
- NPM_TOKEN: '${{ secrets.NPM_TOKEN }}'
33
- outputs:
34
- new_release_published: '${{ steps.semantic.outputs.new_release_published }}'
35
- new_release_version: '${{ steps.semantic.outputs.new_release_version }}'
36
-
37
- docs:
38
- runs-on: ubuntu-latest
39
- steps:
40
- - name: Checkout
41
- uses: actions/checkout@v2
42
- - name: update documentation
43
- uses: CoCreate-app/CoCreate-docs@master
1
+ name: Automated Deployment
2
+ "on":
3
+ push:
4
+ branches:
5
+ - master
6
+ jobs:
7
+ about:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - name: Checkout
11
+ uses: actions/checkout@v3
12
+ - name: setup nodejs
13
+ uses: actions/setup-node@v3
14
+ with:
15
+ node-version: 16
16
+ - name: Jaid/action-sync-node-meta
17
+ uses: jaid/action-sync-node-meta@v1.4.0
18
+ with:
19
+ direction: overwrite-github
20
+ githubToken: "${{ secrets.GITHUB }}"
21
+ release:
22
+ runs-on: ubuntu-latest
23
+ steps:
24
+ - name: Checkout
25
+ uses: actions/checkout@v3
26
+ - name: setup nodejs
27
+ uses: actions/setup-node@v3
28
+ with:
29
+ node-version: 14
30
+ - name: Semantic Release
31
+ uses: cycjimmy/semantic-release-action@v3
32
+ id: semantic
33
+ with:
34
+ extra_plugins: |
35
+ @semantic-release/changelog
36
+ @semantic-release/git
37
+ @semantic-release/github
38
+ env:
39
+ GITHUB_TOKEN: "${{ secrets.GITHUB }}"
40
+ NPM_TOKEN: "${{ secrets.NPM_TOKEN }}"
41
+ outputs:
42
+ new_release_published: "${{ steps.semantic.outputs.new_release_published }}"
43
+ new_release_version: "${{ steps.semantic.outputs.new_release_version }}"
44
+
45
+ docs:
46
+ runs-on: ubuntu-latest
47
+ steps:
48
+ - name: Checkout
49
+ uses: actions/checkout@v3
50
+ - name: setup nodejs
51
+ uses: actions/setup-node@v3
52
+ with:
53
+ node-version: 16
54
+
55
+ - name: update documentation
56
+ uses: CoCreate-app/CoCreate-docs@master
package/CHANGELOG.md CHANGED
@@ -1,6 +1,21 @@
1
- # 1.0.0 (2023-06-01)
1
+ ## [1.0.2](https://github.com/CoCreate-app/CoCreate-authenticate/compare/v1.0.1...v1.0.2) (2023-06-04)
2
2
 
3
3
 
4
- ### Features
4
+ ### Bug Fixes
5
5
 
6
+ * [@v3](https://github.com/v3) ([b46373a](https://github.com/CoCreate-app/CoCreate-authenticate/commit/b46373af9d2558e685ac873f1b78897f2ddc7941))
7
+ * html formating ([26bb115](https://github.com/CoCreate-app/CoCreate-authenticate/commit/26bb1154483ace18843dc775d98e83421bd6ed09))
8
+
9
+ ## [1.0.1](https://github.com/CoCreate-app/CoCreate-authenticate/compare/v1.0.0...v1.0.1) (2023-06-01)
10
+
11
+
12
+ ### Bug Fixes
13
+
14
+ * Updated jsonwebtoken dependency version to 9.0.0 ([09d784b](https://github.com/CoCreate-app/CoCreate-authenticate/commit/09d784b79bcce105971f0870667bf087ad41ce59))
15
+
16
+ # 1.0.0 (2023-06-01)
17
+
18
+
19
+ ### Features
20
+
6
21
  * Initial Release. ([f8a4c62](https://github.com/CoCreate-app/CoCreate-authenticate/commit/f8a4c62bf01d4dd84d8089c6cf8e3a60718b0a9e))
package/CONTRIBUTING.md CHANGED
@@ -1,96 +1,96 @@
1
- # Contributing to CoCreate-authenticate
2
-
3
- This project is work of [many contributors](https://github.com/CoCreate-app/CoCreate-authenticate/graphs/contributors).
4
- You're encouraged to submit [pull requests](https://github.com/CoCreate-app/CoCreate-authenticate/pulls),
5
- [propose features and discuss issues](https://github.com/CoCreate-app/CoCreate-authenticate/issues).
6
-
7
- In the examples below, substitute your Github username for `contributor` in URLs.
8
-
9
- ## Fork the Project
10
-
11
- Fork the [project on Github](https://github.com/CoCreate-app/CoCreate-authenticate) and check out your copy.
12
-
13
- ```
14
- git clone https://github.com/contributor/CoCreate-authenticate.git
15
- cd CoCreate-authenticate
16
- git remote add upstream https://github.com/CoCreate-app/CoCreate-authenticate.git
17
- ```
18
-
19
- ## Create a Topic Branch
20
-
21
- Make sure your fork is up-to-date and create a topic branch for your feature or bug fix on dev branch.
22
-
23
- ```
24
- git checkout dev
25
- git pull upstream dev
26
- git checkout -b my-feature-branch
27
- ```
28
-
29
- ## Write Tests
30
-
31
- Try to write a test that reproduces the problem you're trying to fix or describes a feature that you want to build.
32
-
33
- We definitely appreciate pull requests that highlight or reproduce a problem, even without a fix.
34
-
35
- ## Write Code
36
-
37
- Implement your feature or bug fix.
38
-
39
- ## Write Documentation
40
-
41
- Document any external behavior in the [README](README.md).
42
-
43
- ## Commit Changes
44
-
45
- Make sure git knows your name and email address:
46
-
47
- ```
48
- git config --global user.name "Your Name"
49
- git config --global user.email "contributor@example.com"
50
- ```
51
-
52
- We use [semantic-release](https://github.com/semantic-release/semantic-release) as process to generate changelog
53
- and to release. Write meaningful commits according to
54
- [Commit Message Formats](https://github.com/semantic-release/semantic-release#commit-message-format) is important.
55
-
56
- ```
57
- git add ...
58
- git commit -am "commit-type(optional topic): a meaningful message"
59
- ```
60
-
61
- Here is an example of the release type that should be done based on a [semantic-release](https://github.com/semantic-release/semantic-release):
62
-
63
- | Commit message | Release type |
64
- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -------------------------- |
65
- | `fix(pencil): stop graphite breaking when too much pressure applied` | Patch Release |
66
- | `feat(pencil): add 'graphiteWidth' option` | ~~Minor~~ Feature Release |
67
- | `perf(pencil): remove graphiteWidth option`<br><br>`BREAKING CHANGE: The graphiteWidth option has been removed.`<br>`The default graphite width of 10mm is always used for performance reasons.` | ~~Major~~ Breaking Release |
68
-
69
- ## Push
70
-
71
- ```
72
- git push origin my-feature-branch
73
- ```
74
-
75
- ## Make a Pull Request
76
-
77
- Go to [https://github.com/CoCreate-app/CoCreate-authenticate](https://github.com/CoCreate-app/CoCreate-authenticate) and select your feature branch.
78
- Click the 'Pull Request' button and fill out the form. Pull requests are usually reviewed within a few days.
79
-
80
- ## Rebase
81
-
82
- If you've been working on a change for a while, rebase with upstream/dev.
83
-
84
- ```
85
- git fetch upstream
86
- git rebase upstream/dev
87
- git push origin my-feature-branch -f
88
- ```
89
-
90
- ## Be Patient
91
-
92
- It's likely that your change will not be merged and that the nitpicky maintainers will ask you to do more, or fix seemingly benign problems. Hang in there!
93
-
94
- ## Thank You
95
-
96
- Please do know that we really appreciate and value your time and work. We love you, really.
1
+ # Contributing to CoCreate-authenticate
2
+
3
+ This project is work of [many contributors](https://github.com/CoCreate-app/CoCreate-authenticate/graphs/contributors).
4
+ You're encouraged to submit [pull requests](https://github.com/CoCreate-app/CoCreate-authenticate/pulls),
5
+ [propose features and discuss issues](https://github.com/CoCreate-app/CoCreate-authenticate/issues).
6
+
7
+ In the examples below, substitute your Github username for `contributor` in URLs.
8
+
9
+ ## Fork the Project
10
+
11
+ Fork the [project on Github](https://github.com/CoCreate-app/CoCreate-authenticate) and check out your copy.
12
+
13
+ ```
14
+ git clone https://github.com/contributor/CoCreate-authenticate.git
15
+ cd CoCreate-authenticate
16
+ git remote add upstream https://github.com/CoCreate-app/CoCreate-authenticate.git
17
+ ```
18
+
19
+ ## Create a Topic Branch
20
+
21
+ Make sure your fork is up-to-date and create a topic branch for your feature or bug fix on dev branch.
22
+
23
+ ```
24
+ git checkout dev
25
+ git pull upstream dev
26
+ git checkout -b my-feature-branch
27
+ ```
28
+
29
+ ## Write Tests
30
+
31
+ Try to write a test that reproduces the problem you're trying to fix or describes a feature that you want to build.
32
+
33
+ We definitely appreciate pull requests that highlight or reproduce a problem, even without a fix.
34
+
35
+ ## Write Code
36
+
37
+ Implement your feature or bug fix.
38
+
39
+ ## Write Documentation
40
+
41
+ Document any external behavior in the [README](README.md).
42
+
43
+ ## Commit Changes
44
+
45
+ Make sure git knows your name and email address:
46
+
47
+ ```
48
+ git config --global user.name "Your Name"
49
+ git config --global user.email "contributor@example.com"
50
+ ```
51
+
52
+ We use [semantic-release](https://github.com/semantic-release/semantic-release) as process to generate changelog
53
+ and to release. Write meaningful commits according to
54
+ [Commit Message Formats](https://github.com/semantic-release/semantic-release#commit-message-format) is important.
55
+
56
+ ```
57
+ git add ...
58
+ git commit -am "commit-type(optional topic): a meaningful message"
59
+ ```
60
+
61
+ Here is an example of the release type that should be done based on a [semantic-release](https://github.com/semantic-release/semantic-release):
62
+
63
+ | Commit message | Release type |
64
+ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -------------------------- |
65
+ | `fix(pencil): stop graphite breaking when too much pressure applied` | Patch Release |
66
+ | `feat(pencil): add 'graphiteWidth' option` | ~~Minor~~ Feature Release |
67
+ | `perf(pencil): remove graphiteWidth option`<br><br>`BREAKING CHANGE: The graphiteWidth option has been removed.`<br>`The default graphite width of 10mm is always used for performance reasons.` | ~~Major~~ Breaking Release |
68
+
69
+ ## Push
70
+
71
+ ```
72
+ git push origin my-feature-branch
73
+ ```
74
+
75
+ ## Make a Pull Request
76
+
77
+ Go to [https://github.com/CoCreate-app/CoCreate-authenticate](https://github.com/CoCreate-app/CoCreate-authenticate) and select your feature branch.
78
+ Click the 'Pull Request' button and fill out the form. Pull requests are usually reviewed within a few days.
79
+
80
+ ## Rebase
81
+
82
+ If you've been working on a change for a while, rebase with upstream/dev.
83
+
84
+ ```
85
+ git fetch upstream
86
+ git rebase upstream/dev
87
+ git push origin my-feature-branch -f
88
+ ```
89
+
90
+ ## Be Patient
91
+
92
+ It's likely that your change will not be merged and that the nitpicky maintainers will ask you to do more, or fix seemingly benign problems. Hang in there!
93
+
94
+ ## Thank You
95
+
96
+ Please do know that we really appreciate and value your time and work. We love you, really.
@@ -1,26 +1,26 @@
1
- module.exports = {
2
- "config": {
3
- "key": "2061acef-0451-4545-f754-60cf8160",
4
- "organization_id": "5ff747727005da1c272740ab",
5
- "host": "general.cocreate.app"
6
- },
7
- "sources": [
8
- {
9
- "collection": "files",
10
- "document": {
11
- "_id": "6204253480b409001727b73d",
12
- "name": "index.html",
13
- "path": "/docs/authenticate/index.html",
14
- "src": "{{./docs/index.html}}",
15
- "hosts": [
16
- "*",
17
- "general.cocreate.app"
18
- ],
19
- "directory": "/docs/authenticate",
20
- "content-type": "text/html",
21
- "public": "true",
22
- "website_id": "5ffbceb7f11d2d00103c4535"
23
- }
24
- }
25
- ]
1
+ module.exports = {
2
+ "config": {
3
+ "key": "2061acef-0451-4545-f754-60cf8160",
4
+ "organization_id": "5ff747727005da1c272740ab",
5
+ "host": "general.cocreate.app"
6
+ },
7
+ "sources": [
8
+ {
9
+ "collection": "files",
10
+ "document": {
11
+ "_id": "6204253480b409001727b73d",
12
+ "name": "index.html",
13
+ "path": "/docs/authenticate/index.html",
14
+ "src": "{{./docs/index.html}}",
15
+ "hosts": [
16
+ "*",
17
+ "general.cocreate.app"
18
+ ],
19
+ "directory": "/docs/authenticate",
20
+ "content-type": "text/html",
21
+ "public": "true",
22
+ "website_id": "5ffbceb7f11d2d00103c4535"
23
+ }
24
+ }
25
+ ]
26
26
  }