declapract-typescript-ehmpathy 0.43.17 → 0.43.18

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,12 +1,12 @@
1
- import { DeclastructProvider } from 'declastruct';
1
+ import type { DeclastructProvider } from 'declastruct';
2
2
  import {
3
- DeclaredGithubBranch,
3
+ type DeclaredGithubBranch,
4
4
  DeclaredGithubBranchProtection,
5
5
  DeclaredGithubRepo,
6
6
  DeclaredGithubRepoConfig,
7
7
  getDeclastructGithubProvider,
8
8
  } from 'declastruct-github';
9
- import { DomainEntity, RefByUnique } from 'domain-objects';
9
+ import { type DomainEntity, RefByUnique } from 'domain-objects';
10
10
  import { UnexpectedCodePathError } from 'helpful-errors';
11
11
 
12
12
  import pkg from '../../package.json';
@@ -34,8 +34,8 @@ export const getProviders = async (): Promise<DeclastructProvider[]> => [
34
34
  export const getResources = async (): Promise<DomainEntity<any>[]> => {
35
35
  // declare the repo
36
36
  const repo = DeclaredGithubRepo.as({
37
- owner: '@declapract{variable.organizationName}',
38
- name: '@declapract{variable.projectName}',
37
+ owner: 'ehmpathy',
38
+ name: 'rhachet-roles-ehmpathy',
39
39
  description: (pkg as any).description ?? null,
40
40
  visibility: (pkg as any).private === true ? 'private' : 'public',
41
41
  private: (pkg as any).private ?? false, // todo: why do we have to specify this twice?
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "declapract-typescript-ehmpathy",
3
3
  "author": "ehmpathy",
4
4
  "description": "declapract best practices declarations for typescript",
5
- "version": "0.43.17",
5
+ "version": "0.43.18",
6
6
  "license": "MIT",
7
7
  "main": "src/index.js",
8
8
  "repository": "ehmpathy/declapract-typescript-ehmpathy",