Skip to content

Commit b2f314b

Browse files
authored
feat(STRINGS-221): Extend PhraseConfig type with hidingClasses field (#129)
1 parent 6468b4b commit b2f314b

File tree

5 files changed

+5
-4
lines changed

5 files changed

+5
-4
lines changed

.github/workflows/deploy-docs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
node-version: 20
1919
registry-url: 'https://npm.pkg.github.com'
2020

21-
- uses: pnpm/action-setup@v2.4.0
21+
- uses: pnpm/action-setup@v4
2222
with:
2323
version: 8.10.2
2424

.github/workflows/lint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
node-version: 16.14.2
1515
registry-url: 'https://npm.pkg.github.com'
1616

17-
- uses: pnpm/action-setup@v2.4.0
17+
- uses: pnpm/action-setup@v4
1818
with:
1919
version: 8.10.2
2020

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
node-version: 16.14.2
1818
registry-url: 'https://npm.pkg.github.com'
1919

20-
- uses: pnpm/action-setup@v2.4.0
20+
- uses: pnpm/action-setup@v4
2121
with:
2222
version: 8.10.2
2323

.github/workflows/test-coverage.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
node-version: 16.14.2
1515
registry-url: 'https://npm.pkg.github.com'
1616

17-
- uses: pnpm/action-setup@v2.4.0
17+
- uses: pnpm/action-setup@v4
1818
with:
1919
version: 8.10.2
2020

src/phrase-config.type.ts

+1
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,5 @@ export type PhraseConfig = {
3535
fullReparse: boolean;
3636
sanitize?: (content: string)=> string;
3737
origin: string;
38+
hidingClasses?: string[];
3839
};

0 commit comments

Comments
 (0)