@nl-design-system/component-progress 1.0.1-alpha.99 → 1.0.2
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/index.json +25621 -26545
- package/dist/projects.json +1403 -105
- package/dist/utils/mapToComponentProgress.d.ts +2 -0
- package/dist/utils/projectData.d.ts +13 -1
- package/package.json +18 -18
|
@@ -7,6 +7,7 @@ export interface CleanComponent {
|
|
|
7
7
|
url: string;
|
|
8
8
|
tasks: {
|
|
9
9
|
id: number;
|
|
10
|
+
name: string;
|
|
10
11
|
value?: string;
|
|
11
12
|
checked: boolean;
|
|
12
13
|
}[];
|
|
@@ -20,6 +21,7 @@ export interface ExtendedCleanComponent extends CleanComponent {
|
|
|
20
21
|
};
|
|
21
22
|
tasks: {
|
|
22
23
|
id: number;
|
|
24
|
+
name: string;
|
|
23
25
|
value: string;
|
|
24
26
|
checked: boolean;
|
|
25
27
|
}[];
|
|
@@ -8,7 +8,19 @@ export declare const PROJECT_NUMBERS: {
|
|
|
8
8
|
RVO: number;
|
|
9
9
|
LOGIUS: number;
|
|
10
10
|
DEN_HAAG: number;
|
|
11
|
+
RIJKSHUISSTIJL_COMMUNITY: number;
|
|
12
|
+
CLIPPY: number;
|
|
11
13
|
};
|
|
12
14
|
export declare const PROJECTS: {
|
|
13
|
-
[
|
|
15
|
+
[PROJECT_NUMBERS.HELP_WANTED]: string;
|
|
16
|
+
[PROJECT_NUMBERS.COMMUNITY]: string;
|
|
17
|
+
[PROJECT_NUMBERS.CANDIDATE]: string;
|
|
18
|
+
[PROJECT_NUMBERS.HALL_OF_FAME]: string;
|
|
19
|
+
[PROJECT_NUMBERS.UTRECHT]: string;
|
|
20
|
+
[PROJECT_NUMBERS.AMSTERDAM]: string;
|
|
21
|
+
[PROJECT_NUMBERS.RVO]: string;
|
|
22
|
+
[PROJECT_NUMBERS.LOGIUS]: string;
|
|
23
|
+
[PROJECT_NUMBERS.DEN_HAAG]: string;
|
|
24
|
+
[PROJECT_NUMBERS.RIJKSHUISSTIJL_COMMUNITY]: string;
|
|
25
|
+
[PROJECT_NUMBERS.CLIPPY]: string;
|
|
14
26
|
};
|
package/package.json
CHANGED
|
@@ -1,37 +1,37 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
2
|
+
"name": "@nl-design-system/component-progress",
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Script to get the component progress for the documentation of NL Design System",
|
|
5
|
+
"author": "Community for NL Design System",
|
|
5
6
|
"license": "EUPL-1.2",
|
|
6
|
-
"name": "@nl-design-system/component-progress",
|
|
7
7
|
"keywords": [
|
|
8
8
|
"nl-design-system"
|
|
9
9
|
],
|
|
10
|
-
"private": false,
|
|
11
10
|
"publishConfig": {
|
|
12
|
-
"access": "public"
|
|
11
|
+
"access": "public",
|
|
12
|
+
"provenance": true
|
|
13
13
|
},
|
|
14
14
|
"repository": {
|
|
15
|
-
"type": "git
|
|
16
|
-
"url": "
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "github:nl-design-system/index",
|
|
17
|
+
"directory": "packages/component-progress"
|
|
17
18
|
},
|
|
18
19
|
"files": [
|
|
19
20
|
"dist/*.json",
|
|
20
21
|
"dist/**/*.d.ts"
|
|
21
22
|
],
|
|
22
23
|
"type": "module",
|
|
23
|
-
"scripts": {
|
|
24
|
-
"build": "tsc --project tsconfig.json && node dist/index.js",
|
|
25
|
-
"clean": "rm -rf dist/",
|
|
26
|
-
"lint": "tsc --noEmit --project tsconfig.json",
|
|
27
|
-
"prebuild": "npm run clean"
|
|
28
|
-
},
|
|
29
24
|
"devDependencies": {
|
|
30
|
-
"@octokit/core": "
|
|
31
|
-
"@octokit/plugin-paginate-graphql": "
|
|
25
|
+
"@octokit/core": "7.0.6",
|
|
26
|
+
"@octokit/plugin-paginate-graphql": "6.0.0",
|
|
32
27
|
"@types/lodash.isempty": "4.4.9",
|
|
33
|
-
"@types/node": "
|
|
28
|
+
"@types/node": "24.10.9",
|
|
34
29
|
"lodash.isempty": "4.4.0"
|
|
35
30
|
},
|
|
36
|
-
"
|
|
37
|
-
|
|
31
|
+
"scripts": {
|
|
32
|
+
"build": "tsc --project tsconfig.json",
|
|
33
|
+
"start": "node dist/index.js",
|
|
34
|
+
"clean": "rm -rf dist/",
|
|
35
|
+
"lint": "tsc --noEmit --project tsconfig.json"
|
|
36
|
+
}
|
|
37
|
+
}
|