Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

merge: Development into main #22

Merged
merged 43 commits into from
Mar 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
f5b3e6a
ci(config): add script for attribution
anantakumarghosh Feb 3, 2024
9b38f4c
feat: ts files fix
Feb 4, 2024
09b15a0
feat: import type fix
Feb 5, 2024
fff802e
ci(config): add script for attribution
anantakumarghosh Feb 3, 2024
9713298
fix: :bug: typo in moduleStyles files
Edithmark42 Feb 5, 2024
ebfad82
ci(config): :wrench: update auto pr ci
anantakumarghosh Feb 5, 2024
042078b
Merge branch 'development' of https://github.com/wrappid/wrappid-modu…
techoneel Feb 5, 2024
4d7c274
refactor(global): :recycle: merge from development changes
techoneel Feb 5, 2024
dbb9b3b
feat: update package-lock.json
Feb 6, 2024
8b07712
Merge pull request #41 from wrappid/WRPD-enhancement-28
techoneel Feb 6, 2024
2c5e79d
fix(core): :bug: fix compilation errors
anantakumarghosh Feb 8, 2024
4255e13
Merge pull request #43 from wrappid/WRPD-bugfix-42
anantakumarghosh Feb 8, 2024
10f9c8b
refactor: :art: fix eslint
Feb 12, 2024
b238f96
Merge pull request #46 from wrappid/WRPD-bugfix-45
PritamIT2023 Feb 12, 2024
9b64fb4
Merge pull request #47 from wrappid/development
techoneel Feb 12, 2024
a60af75
fix: configure ESLint to recognize the module path
Feb 12, 2024
ead6056
refactor: :art: remove unnecessary quotes in keys
Feb 12, 2024
aca3009
Merge pull request #49 from wrappid/WRPD-enhancement-48
techoneel Feb 12, 2024
fbe133c
Merge pull request #50 from wrappid/development
techoneel Feb 12, 2024
5d88675
fix(config): :wrench: update code style scrip
anantakumarghosh Feb 26, 2024
9f23bef
Merge pull request #51 from wrappid/WRPD-bugfix-19
anantakumarghosh Feb 26, 2024
c179cdd
Merge pull request #52 from wrappid/development
anantakumarghosh Feb 26, 2024
6f7a82d
fix(config): :wrench: update code style scrip
anantakumarghosh Feb 26, 2024
8d20be0
ci(config): :wrench: change npm installation approach
anantakumarghosh Feb 28, 2024
82b1a9e
ci(config): :pushpin: change caret to tilde package.json
anantakumarghosh Feb 28, 2024
b8a29b3
Merge pull request #55 from wrappid/WRPD-enhancement-53
anantakumarghosh Feb 28, 2024
c3f81af
chore(global): :sparkles: jest config set
Feb 29, 2024
68fa6ee
Merge pull request #57 from wrappid/WRPD-enhancement-56
anantakumarghosh Mar 5, 2024
89a8adb
style(global): :recycle: fix naming convention of registry files
Mar 13, 2024
e9fd27b
feat(config): :sparkles: tag release of wrappid module template
anantakumarghosh Mar 15, 2024
e24bd06
Merge pull request #59 from wrappid/WRPD-enhancement-58
PritamIT2023 Mar 15, 2024
3564ed9
Merge pull request #61 from wrappid/WRPD-feature-60
anantakumarghosh Mar 15, 2024
553f9ff
fix(config): :heavy_plus_sign: add standard version package and script
anantakumarghosh Mar 15, 2024
9fe2cb6
Merge pull request #62 from wrappid/WRPD-feature-60
anantakumarghosh Mar 15, 2024
88c9e86
chore(tag-release): 0.0.2
wrappidcare Mar 15, 2024
70af8b2
feat(utils): :memo: update attribution generation script
anantakumarghosh Mar 16, 2024
7e24a81
Merge pull request #64 from wrappid/WRPD-enhancement-63
techoneel Mar 16, 2024
c8f47d0
chore(tag-release): 0.0.3
wrappidcare Mar 16, 2024
fb7ea0f
refactor(core): :recycle: registry names camelCase to PascalCase
irkfaisal Mar 18, 2024
012b3ec
Merge pull request #66 from wrappid/WRPD-refactor-65
irkfaisal Mar 18, 2024
a0c7a61
chore(tag-release): 0.0.4
wrappidcare Mar 18, 2024
f10b61a
refactor(global): :recycle: update template
Mar 20, 2024
8fb1b97
Merge pull request #21 from wrappid/WRPD-refactor-13
PritamIT2023 Mar 20, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module.exports = {
ignorePatterns: ["**/node_modules/*", ".eslintrc.js", "commitlint.config.js" ],
ignorePatterns: ["**/node_modules/*", ".eslintrc.js", "commitlint.config.js", "attributions.gen.js" ],
overrides: [
{
files: ["service/**/*.ts"],
Expand Down
47 changes: 47 additions & 0 deletions .github/workflows/create-tag.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: Create Tag - CI

on:
workflow_dispatch:
inputs:
version_type:
type: choice
description: Choose version bump type
options:
- -r major
- -r minor
- -r patch
- -p alpha
- -p beta
- -p build
- -p hotfix
- -p dev
required: true
default: "-r patch"
pull_request:
types:
- closed
branches:
- 'development'

jobs:
call-create-tag:
# runs-on: ubuntu-latest
permissions: write-all
if: github.event_name == 'workflow_dispatch' || (github.event_name == 'pull_request' && github.event.action == 'closed' && github.event.pull_request.merged == true && github.event.pull_request.base.ref == 'development')
uses: wrappid/workflows/.github/workflows/util-create-tag.yml@main
with:
GIT_USER_NAME: ${{ vars.GIT_USER_NAME }}
VERSION_TYPE_REPOSITORY_DEFAULT: ${{ vars.VERSION_TYPE_REPOSITORY_DEFAULT }}
EMAIL_NOTIFY: ${{ vars.EMAIL_NOTIFY }}
EMAIL_SENDER_NAME: ${{ vars.EMAIL_SENDER_NAME }}
secrets:
PAT: ${{ secrets.PAT }}
GIT_USER_EMAIL: ${{ secrets.GIT_USER_EMAIL }}
WRAPPID_REGISTRY_TOKEN: ${{ secrets.WRAPPID_REGISTRY_TOKEN }}
EMAIL_SERVER_ADDRESS: ${{ secrets.EMAIL_SERVER_ADDRESS }}
EMAIL_SERVER_PORT: ${{ secrets.EMAIL_SERVER_PORT }}
EMAIL_USER_ID: ${{ secrets.EMAIL_USER_ID }}
EMAIL_USER_PASSWORD: ${{ secrets.EMAIL_USER_PASSWORD }}
EMAIL_TO: ${{ secrets.EMAIL_TO }}
EMAIL_CC: ${{ secrets.EMAIL_CC }} ## Optional
EMAIL_BCC: ${{ secrets.EMAIL_BCC }} ## Optional
27 changes: 14 additions & 13 deletions .wrappid/wrappid.meta.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
{
"projectType": "module",
"projectID": "",
"projectName": "data-management",
"remote": true,
"repoProvider": "github.com",
"repoOwner": "wrappid",
"repoURL": "https://github.com/Rxefy/data-management-module.git",
"app": {
"renderType": []
},
"service": {},
"modules": {}
{
"projectType": "module",
"projectID": "",
"projectName": "data-management",
"wrTemplateVersion": "0.0.4",
"remote": true,
"repoProvider": "github.com",
"repoOwner": "wrappid",
"repoURL": "https://github.com/Rxefy/data-management-module.git",
"app": {
"renderType": []
},
"service": {},
"modules": {}
}
Loading
Loading