@erudit-js/core 4.0.0 → 4.0.1

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.
package/dist/brand.js CHANGED
@@ -1,9 +1,9 @@
1
- export const brandLogotype = `
2
- ███████╗██████╗ ██╗ ██╗██████╗ ██╗████████╗
3
- ██╔════╝██╔══██╗██║ ██║██╔══██╗██║╚══██╔══╝
4
- █████╗ ██████╔╝██║ ██║██║ ██║██║ ██║
5
- ██╔══╝ ██╔══██╗██║ ██║██║ ██║██║ ██║
6
- ███████╗██║ ██║╚██████╔╝██████╔╝██║ ██║
7
- ╚══════╝╚═╝ ╚═╝ ╚═════╝ ╚═════╝ ╚═╝ ╚═╝
1
+ export const brandLogotype = `
2
+ ███████╗██████╗ ██╗ ██╗██████╗ ██╗████████╗
3
+ ██╔════╝██╔══██╗██║ ██║██╔══██╗██║╚══██╔══╝
4
+ █████╗ ██████╔╝██║ ██║██║ ██║██║ ██║
5
+ ██╔══╝ ██╔══██╗██║ ██║██║ ██║██║ ██║
6
+ ███████╗██║ ██║╚██████╔╝██████╔╝██║ ██║
7
+ ╚══════╝╚═╝ ╚═╝ ╚═════╝ ╚═════╝ ╚═╝ ╚═╝
8
8
  `;
9
9
  export const brandColors = ['#4aa44c', '#1278b9'];
@@ -19,16 +19,16 @@ export function globalContributorsObject(contributorIds) {
19
19
  return contributors;
20
20
  }
21
21
  export function globalContributorsTypes(contributors) {
22
- return `import type { GlobalContributorTypeguard } from '@erudit-js/core/contributor';
23
-
24
- export {};
25
-
26
- declare global {
27
- const $CONTRIBUTOR: {
22
+ return `import type { GlobalContributorTypeguard } from '@erudit-js/core/contributor';
23
+
24
+ export {};
25
+
26
+ declare global {
27
+ const $CONTRIBUTOR: {
28
28
  ${Object.keys(contributors)
29
29
  .map((contributorId) => ` ${contributorId}: GlobalContributorTypeguard;`)
30
- .join('\n')}
31
- };
32
- }
30
+ .join('\n')}
31
+ };
32
+ }
33
33
  `;
34
34
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erudit-js/core",
3
- "version": "4.0.0",
3
+ "version": "4.0.1",
4
4
  "type": "module",
5
5
  "description": "Erudit core essentials",
6
6
  "exports": {