polyci 0.0.37 → 0.1.0
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/package.json +34 -34
- package/readme.md +12 -12
package/package.json
CHANGED
|
@@ -1,34 +1,34 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "polyci",
|
|
3
|
-
"description": "Monorepo CI/CD utilities.",
|
|
4
|
-
"version": "0.0
|
|
5
|
-
"type": "module",
|
|
6
|
-
"private": false,
|
|
7
|
-
"author": "Alexander Tsarev",
|
|
8
|
-
"license": "MIT",
|
|
9
|
-
"main": "./dist/main.js",
|
|
10
|
-
"bin": {
|
|
11
|
-
"polyci": "dist/cli.js"
|
|
12
|
-
},
|
|
13
|
-
"files": [
|
|
14
|
-
"dist",
|
|
15
|
-
"readme.md"
|
|
16
|
-
],
|
|
17
|
-
"publishConfig": {
|
|
18
|
-
"access": "public"
|
|
19
|
-
},
|
|
20
|
-
"scripts": {
|
|
21
|
-
"build": "tsc",
|
|
22
|
-
"dev": "tsx main.ts"
|
|
23
|
-
},
|
|
24
|
-
"dependencies": {
|
|
25
|
-
"commander": "^14.0.3",
|
|
26
|
-
"pino": "^10.3.1",
|
|
27
|
-
"pino-pretty": "^13.1.3"
|
|
28
|
-
},
|
|
29
|
-
"devDependencies": {
|
|
30
|
-
"@types/node": "^25.3.3",
|
|
31
|
-
"tsx": "^4.21.0",
|
|
32
|
-
"typescript": "^5.9.3"
|
|
33
|
-
}
|
|
34
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "polyci",
|
|
3
|
+
"description": "Monorepo CI/CD utilities.",
|
|
4
|
+
"version": "0.1.0",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"private": false,
|
|
7
|
+
"author": "Alexander Tsarev",
|
|
8
|
+
"license": "MIT",
|
|
9
|
+
"main": "./dist/main.js",
|
|
10
|
+
"bin": {
|
|
11
|
+
"polyci": "dist/cli.js"
|
|
12
|
+
},
|
|
13
|
+
"files": [
|
|
14
|
+
"dist",
|
|
15
|
+
"readme.md"
|
|
16
|
+
],
|
|
17
|
+
"publishConfig": {
|
|
18
|
+
"access": "public"
|
|
19
|
+
},
|
|
20
|
+
"scripts": {
|
|
21
|
+
"build": "tsc",
|
|
22
|
+
"dev": "tsx main.ts"
|
|
23
|
+
},
|
|
24
|
+
"dependencies": {
|
|
25
|
+
"commander": "^14.0.3",
|
|
26
|
+
"pino": "^10.3.1",
|
|
27
|
+
"pino-pretty": "^13.1.3"
|
|
28
|
+
},
|
|
29
|
+
"devDependencies": {
|
|
30
|
+
"@types/node": "^25.3.3",
|
|
31
|
+
"tsx": "^4.21.0",
|
|
32
|
+
"typescript": "^5.9.3"
|
|
33
|
+
}
|
|
34
|
+
}
|
package/readme.md
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
installation
|
|
2
|
-
|
|
3
|
-
usage
|
|
4
|
-
|
|
5
|
-
recommedations
|
|
6
|
-
do not change the provided module types and scripts. instead, copy and customise your own type.
|
|
7
|
-
be careful changin environment in release.sh (eg install packages) as the module releases run in one job in one container.
|
|
8
|
-
|
|
9
|
-
requirements
|
|
10
|
-
POLYCI_TOKEN variable must be defined in GitLab and accessible in the jobs that match the rule in the root .gitlab-ci.yml.
|
|
11
|
-
each module must have build script to be called via "npm run build".
|
|
12
|
-
each module must put the build result into ./dist folder.
|
|
1
|
+
installation
|
|
2
|
+
|
|
3
|
+
usage
|
|
4
|
+
|
|
5
|
+
recommedations
|
|
6
|
+
do not change the provided module types and scripts. instead, copy and customise your own type.
|
|
7
|
+
be careful changin environment in release.sh (eg install packages) as the module releases run in one job in one container.
|
|
8
|
+
|
|
9
|
+
requirements
|
|
10
|
+
POLYCI_TOKEN variable must be defined in GitLab and accessible in the jobs that match the rule in the root .gitlab-ci.yml.
|
|
11
|
+
each module must have build script to be called via "npm run build".
|
|
12
|
+
each module must put the build result into ./dist folder.
|
|
13
13
|
docker service deploy needs docker host server with traefik 3.
|