1
1
mirror of https://github.com/theoludwig/programming-challenges.git synced 2024-10-29 22:17:23 +01:00

build(deps): update latest

This commit is contained in:
Théo LUDWIG 2023-07-02 17:24:48 +02:00
parent f9a5b15e7a
commit d772ed0345
Signed by: theoludwig
GPG Key ID: ADFE5A563D718F3B
8 changed files with 868 additions and 617 deletions

View File

@ -8,7 +8,7 @@ Sudoku is a logic-based, combinatorial number-placement puzzle.
The objective is to fill a 9×9 grid with digits so that each column, each row, and each of the nine 3×3 subgrids that compose the grid (also called "boxes", "blocks", or "regions") contains all of the digits from 1 to 9. The puzzle setter provides a partially completed grid, which for a well-posed puzzle has a single solution. The objective is to fill a 9×9 grid with digits so that each column, each row, and each of the nine 3×3 subgrids that compose the grid (also called "boxes", "blocks", or "regions") contains all of the digits from 1 to 9. The puzzle setter provides a partially completed grid, which for a well-posed puzzle has a single solution.
You can't use the same numbers twice in a : You can't use the same numbers twice in a:
- row - row
- column - column

1429
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -23,50 +23,50 @@
"lint:commit": "commitlint", "lint:commit": "commitlint",
"lint:editorconfig": "editorconfig-checker", "lint:editorconfig": "editorconfig-checker",
"lint:markdown": "markdownlint-cli2", "lint:markdown": "markdownlint-cli2",
"lint:eslint": "eslint \"cli\" --ignore-path \".gitignore\"", "lint:eslint": "eslint ./cli --ignore-path .gitignore",
"test": "tap" "test": "tap"
}, },
"dependencies": { "dependencies": {
"chalk": "5.2.0", "chalk": "5.3.0",
"clipanion": "3.2.0", "clipanion": "3.2.1",
"date-and-time": "3.0.0", "date-and-time": "3.0.2",
"execa": "7.1.1", "execa": "7.1.1",
"log-symbols": "5.1.0", "log-symbols": "5.1.0",
"ora": "6.3.1", "ora": "6.3.1",
"replace-in-file": "6.3.5", "replace-in-file": "7.0.1",
"table": "6.8.1", "table": "6.8.1",
"typanion": "3.12.1", "typanion": "3.13.0",
"validate-npm-package-name": "5.0.0" "validate-npm-package-name": "5.0.0"
}, },
"devDependencies": { "devDependencies": {
"@commitlint/cli": "17.6.3", "@commitlint/cli": "17.6.6",
"@commitlint/config-conventional": "17.6.3", "@commitlint/config-conventional": "17.6.6",
"@swc/cli": "0.1.62", "@swc/cli": "0.1.62",
"@swc/core": "1.3.59", "@swc/core": "1.3.67",
"@tsconfig/strictest": "2.0.1", "@tsconfig/strictest": "2.0.1",
"@types/date-and-time": "0.13.0", "@types/date-and-time": "0.13.0",
"@types/mock-fs": "4.13.1", "@types/mock-fs": "4.13.1",
"@types/ms": "0.7.31", "@types/ms": "0.7.31",
"@types/node": "20.2.1", "@types/node": "20.3.3",
"@types/sinon": "10.0.15", "@types/sinon": "10.0.15",
"@types/tap": "15.0.8", "@types/tap": "15.0.8",
"@types/validate-npm-package-name": "4.0.0", "@types/validate-npm-package-name": "4.0.0",
"@typescript-eslint/eslint-plugin": "5.59.6", "@typescript-eslint/eslint-plugin": "5.60.1",
"@typescript-eslint/parser": "5.59.6", "@typescript-eslint/parser": "5.60.1",
"editorconfig-checker": "5.0.1", "editorconfig-checker": "5.1.1",
"eslint": "8.41.0", "eslint": "8.44.0",
"eslint-config-conventions": "9.0.0", "eslint-config-conventions": "10.0.0",
"eslint-plugin-import": "2.27.5", "eslint-plugin-import": "2.27.5",
"eslint-plugin-promise": "6.1.1", "eslint-plugin-promise": "6.1.1",
"eslint-plugin-unicorn": "47.0.0", "eslint-plugin-unicorn": "47.0.0",
"get-stream": "6.0.1", "get-stream": "7.0.1",
"markdownlint-cli2": "0.7.1", "markdownlint-cli2": "0.8.1",
"markdownlint-rule-relative-links": "1.2.0", "markdownlint-rule-relative-links": "2.1.0",
"mock-fs": "5.2.0", "mock-fs": "5.2.0",
"ms": "2.1.3", "ms": "2.1.3",
"rimraf": "5.0.1", "rimraf": "5.0.1",
"sinon": "15.1.0", "sinon": "15.2.0",
"tap": "16.3.4", "tap": "16.3.7",
"typescript": "5.0.4" "typescript": "5.0.4"
} }
} }

View File

@ -1,4 +1,4 @@
FROM dart:3.0.1 AS builder FROM dart:3.0.5 AS builder
WORKDIR /usr/src/application WORKDIR /usr/src/application
COPY ./ ./ COPY ./ ./
RUN dart compile exe solution.dart -o solution RUN dart compile exe solution.dart -o solution

View File

@ -1,4 +1,4 @@
FROM pypy:3.9-7 FROM pypy:3.10
WORKDIR /usr/src/application WORKDIR /usr/src/application
COPY ./ ./ COPY ./ ./
CMD ["python", "solution.py"] CMD ["python", "solution.py"]

View File

@ -1,4 +1,4 @@
FROM rust:1.69.0 AS builder FROM rust:1.70.0 AS builder
WORKDIR /usr/src/rust_application WORKDIR /usr/src/rust_application
# Cache dependencies # Cache dependencies

View File

@ -1,9 +1,9 @@
FROM node:18.16.0 AS builder-dependencies FROM node:18.16.1 AS builder-dependencies
WORKDIR /usr/src/application WORKDIR /usr/src/application
COPY ./package*.json ./ COPY ./package*.json ./
RUN npm install RUN npm install
FROM node:18.16.0 AS builder FROM node:18.16.1 AS builder
WORKDIR /usr/src/application WORKDIR /usr/src/application
COPY --from=builder-dependencies /usr/src/application/node_modules ./node_modules COPY --from=builder-dependencies /usr/src/application/node_modules ./node_modules
COPY ./ ./ COPY ./ ./

View File

@ -4,7 +4,7 @@
"build": "tsc" "build": "tsc"
}, },
"devDependencies": { "devDependencies": {
"@types/node": "20.2.1", "@types/node": "20.3.3",
"typescript": "5.0.4" "typescript": "5.1.6"
} }
} }