Skip to content

Commit

Permalink
Merge pull request #7937 from ever-co/develop
Browse files Browse the repository at this point in the history
Release
  • Loading branch information
evereq authored Jul 10, 2024
2 parents b14b172 + 4942d3a commit 43fad58
Show file tree
Hide file tree
Showing 451 changed files with 13,988 additions and 11,693 deletions.
23 changes: 22 additions & 1 deletion .cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,28 @@
"TIMESTAMPDIFF",
"listbox",
"combobox",
"tabid"
"tabid",
"fesm",
"Seedable",
"npmignore",
"undici",
"libsql",
"knexjs",
"zipkin",
"honeycombio",
"gauzyapiserver",
"Embeddable",
"locutus",
"woot",
"proto",
"iubenda",
"iconed",
"cust",
"trasp",
"policyicon",
"wbars",
"allcaps",
"iubgreen"
],
"useGitignore": true,
"ignorePaths": [
Expand Down
6 changes: 3 additions & 3 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@
"allowedCommonJsDependencies": [
"@gauzy/contracts",
"@gauzy/ui-config",
"@gauzy/integration-hubstaff",
"brace",
"brace/mode/handlebars",
"camelcase",
Expand All @@ -85,7 +84,8 @@
"moment-timezone",
"randomcolor",
"underscore.string",
"slugify"
"slugify",
"eva-icons"
]
},
"configurations": {
Expand Down Expand Up @@ -288,7 +288,7 @@
}
}
},
"job-search-ui-plugin": {
"plugin-job-search-ui": {
"projectType": "library",
"root": "packages/plugins/job-search-ui",
"sourceRoot": "packages/plugins/job-search-ui",
Expand Down
16 changes: 9 additions & 7 deletions apps/api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,16 @@
"seed:prod:build": "yarn ng run api:seed -c=production"
},
"dependencies": {
"@gauzy/changelog-plugin": "^0.1.0",
"@gauzy/core": "^0.1.0",
"@gauzy/integration-upwork": "^0.1.0",
"@gauzy/jitsu-analytics-plugin": "^0.1.0",
"@gauzy/job-proposal-plugin": "^0.1.0",
"@gauzy/job-search-plugin": "^0.1.0",
"@gauzy/knowledge-base-plugin": "^0.1.0",
"@gauzy/sentry-plugin": "^0.1.0",
"@gauzy/plugin-changelog": "^0.1.0",
"@gauzy/plugin-integration-github": "^0.1.0",
"@gauzy/plugin-integration-hubstaff": "^0.1.0",
"@gauzy/plugin-integration-upwork": "^0.1.0",
"@gauzy/plugin-jitsu-analytics": "^0.1.0",
"@gauzy/plugin-job-proposal": "^0.1.0",
"@gauzy/plugin-job-search": "^0.1.0",
"@gauzy/plugin-knowledge-base": "^0.1.0",
"@gauzy/plugin-sentry": "^0.1.0",
"dotenv": "^16.0.3",
"yargs": "^17.5.0"
},
Expand Down
2 changes: 1 addition & 1 deletion apps/api/src/plugin-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import {
environment,
dbKnexConnectionConfig
} from '@gauzy/config';
import { SentryService } from '@gauzy/sentry-plugin';
import { SentryService } from '@gauzy/plugin-sentry';
import { SentryTracing as SentryPlugin } from './sentry';
import { version } from './../version';
import { plugins } from './plugins';
Expand Down
26 changes: 16 additions & 10 deletions apps/api/src/plugins.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
import { environment } from '@gauzy/config';
import { ChangelogPlugin } from '@gauzy/changelog-plugin';
import { JitsuAnalyticsPlugin } from '@gauzy/jitsu-analytics-plugin';
import { KnowledgeBasePlugin } from '@gauzy/knowledge-base-plugin';
import { JobProposalPlugin } from '@gauzy/job-proposal-plugin';
import { JobSearchPlugin } from '@gauzy/job-search-plugin';
import { IntegrationUpworkPlugin } from '@gauzy/integration-upwork';
import { ChangelogPlugin } from '@gauzy/plugin-changelog';
import { IntegrationGithubPlugin } from '@gauzy/plugin-integration-github';
import { IntegrationHubstaffPlugin } from '@gauzy/plugin-integration-hubstaff';
import { IntegrationUpworkPlugin } from '@gauzy/plugin-integration-upwork';
import { JitsuAnalyticsPlugin } from '@gauzy/plugin-jitsu-analytics';
import { JobProposalPlugin } from '@gauzy/plugin-job-proposal';
import { JobSearchPlugin } from '@gauzy/plugin-job-search';
import { KnowledgeBasePlugin } from '@gauzy/plugin-knowledge-base';
import { SentryTracing as SentryPlugin } from './sentry';

const { jitsu, sentry } = environment;
Expand All @@ -26,12 +28,16 @@ export const plugins = [
}),
// Indicates the inclusion or intention to use the ChangelogPlugin in the codebase.
ChangelogPlugin,
// Indicates the inclusion or intention to use the KnowledgeBasePlugin in the codebase.
KnowledgeBasePlugin,
// Indicates the inclusion or intention to use the IntegrationGithubPlugin in the codebase.
IntegrationGithubPlugin,
// Indicates the inclusion or intention to use the IntegrationHubstaffPlugin in the codebase.
IntegrationHubstaffPlugin,
// Indicates the inclusion or intention to use the IntegrationUpworkPlugin in the codebase.
IntegrationUpworkPlugin,
// Indicates the inclusion or intention to use the JobProposalPlugin in the codebase.
JobProposalPlugin,
// Indicates the inclusion or intention to use the JobSearchPlugin in the codebase.
JobSearchPlugin,
// Indicates the inclusion or intention to use the IntegrationUpworkPlugin in the codebase.
IntegrationUpworkPlugin
// Indicates the inclusion or intention to use the KnowledgeBasePlugin in the codebase.
KnowledgeBasePlugin
];
2 changes: 1 addition & 1 deletion apps/api/src/sentry.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { environment } from '@gauzy/config';
import { SentryPlugin, DefaultSentryIntegrations } from '@gauzy/sentry-plugin';
import { SentryPlugin, DefaultSentryIntegrations } from '@gauzy/plugin-sentry';
import { version } from '../version';

/**
Expand Down
Loading

0 comments on commit 43fad58

Please sign in to comment.