|
4 | 4 | "description": "Tired of pushing to test your .gitlab-ci.yml?",
|
5 | 5 | "main": "src/index.js",
|
6 | 6 | "bin": "src/index.js",
|
7 |
| - "version": "4.55.0", |
| 7 | + "version": "4.56.0", |
8 | 8 | "scripts": {
|
9 | 9 | "esbuild": "esbuild src/index.ts --outfile=bin/index.cjs --bundle --platform=node --format=cjs --minify --external:yargs --external:re2 --sourcemap=inline",
|
10 |
| - "pkg-linux": "npx tsx scripts/install-re2-bin.ts --platform linux --platform-arch=x64 && pkg bin/index.cjs --public --options=enable-source-maps --no-bytecode -t node20-linux-x64 -o bin/linux/gitlab-ci-local && chmod +x bin/linux/gitlab-ci-local && gzip -c bin/linux/gitlab-ci-local > bin/linux.gz", |
11 |
| - "pkg-macos": "npx tsx scripts/install-re2-bin.ts --platform darwin --platform-arch=x64 && pkg bin/index.cjs --public --options=enable-source-maps --no-bytecode -t node20-macos-x64 -o bin/macos/gitlab-ci-local && gzip -c bin/macos/gitlab-ci-local > bin/macos.gz", |
12 |
| - "pkg-win": "npx tsx scripts/install-re2-bin.ts --platform win32 --platform-arch=x64 && pkg bin/index.cjs --public --options=enable-source-maps --no-bytecode -t node20-win-x64 -o bin/win/gitlab-ci-local && gzip -c bin/win/gitlab-ci-local.exe > bin/win.gz", |
| 10 | + "pkg-linux": "npx tsx scripts/install-re2-bin.ts --platform linux --platform-arch=x64 && pkg bin/index.cjs --public --options=enable-source-maps --no-bytecode -t linux-x64 -o bin/linux/gitlab-ci-local && chmod +x bin/linux/gitlab-ci-local && gzip -c bin/linux/gitlab-ci-local > bin/linux.gz", |
| 11 | + "pkg-macos": "npx tsx scripts/install-re2-bin.ts --platform darwin --platform-arch=x64 && pkg bin/index.cjs --public --options=enable-source-maps --no-bytecode -t macos-x64 -o bin/macos/gitlab-ci-local && gzip -c bin/macos/gitlab-ci-local > bin/macos.gz", |
| 12 | + "pkg-win": "npx tsx scripts/install-re2-bin.ts --platform win32 --platform-arch=x64 && pkg bin/index.cjs --public --options=enable-source-maps --no-bytecode -t win-x64 -o bin/win/gitlab-ci-local && gzip -c bin/win/gitlab-ci-local.exe > bin/win.gz", |
13 | 13 | "pkg-all": "npm run pkg-linux && npm run pkg-macos && npm run pkg-win && npm ci",
|
14 | 14 | "cleanup": "git clean -fX tests/ && git clean -fX src/",
|
15 | 15 | "build": " npm run cleanup && tsc",
|
|
25 | 25 | },
|
26 | 26 | "dependencies": {
|
27 | 27 | "ajv": "8.x.x",
|
28 |
| - "axios": "^1.7.7", |
| 28 | + "axios": "1.x.x", |
29 | 29 | "base64url": "3.x.x",
|
30 | 30 | "camelcase": "6.x.x",
|
31 | 31 | "chalk": "4.x.x",
|
|
36 | 36 | "fs-extra": "11.x.x",
|
37 | 37 | "globby": "11.x.x",
|
38 | 38 | "js-yaml": "4.x.x",
|
39 |
| - "jsonpointer": "^5.0.1", |
40 |
| - "micromatch": "^4.0.7", |
| 39 | + "jsonpointer": "5.x.x", |
| 40 | + "micromatch": "4.x.x", |
41 | 41 | "object-traversal": "1.x.x",
|
42 | 42 | "p-map": "4.x.x",
|
43 | 43 | "pretty-hrtime": "1.x.x",
|
|
54 | 54 | "@types/fs-extra": "11.x.x",
|
55 | 55 | "@types/jest-when": "3.x.x",
|
56 | 56 | "@types/js-yaml": "4.x.x",
|
57 |
| - "@types/micromatch": "^4.0.7", |
| 57 | + "@types/micromatch": "4.x.x", |
58 | 58 | "@types/node": "22.x",
|
59 | 59 | "@types/pretty-hrtime": "1.x.x",
|
60 | 60 | "@types/split2": "4.x.x",
|
|
64 | 64 | "@yao-pkg/pkg": "^6.0.0",
|
65 | 65 | "axios-mock-adapter": "2.x",
|
66 | 66 | "depcheck": "1.x.x",
|
67 |
| - "esbuild": "^0.24.0", |
| 67 | + "esbuild": "0.24.x", |
68 | 68 | "eslint": "8.x.x",
|
69 | 69 | "jest": "29.x.x",
|
70 | 70 | "jest-when": "3.x.x",
|
71 |
| - "nodemon": "^3.1.1", |
| 71 | + "nodemon": "3.x.x", |
72 | 72 | "ts-jest": "29.x.x",
|
73 |
| - "tsx": "^4.19.1", |
| 73 | + "tsx": "4.x.x", |
74 | 74 | "typescript": "5.x.x"
|
75 | 75 | },
|
76 | 76 | "engines": {
|
|
79 | 79 | "pkg": {
|
80 | 80 | "assets": [
|
81 | 81 | "package.json",
|
82 |
| - "src/schema/schema.json" |
| 82 | + "**/src/schema/schema.json" |
83 | 83 | ],
|
84 | 84 | "scripts": [
|
85 | 85 | "src/**/*.js"
|
|
0 commit comments