Skip to content

Commit

Permalink
✨ update stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
Guerteltier committed May 16, 2024
1 parent 2d80754 commit b6e0646
Show file tree
Hide file tree
Showing 10 changed files with 25 additions and 24 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ jobs:
run: |
sudo apt-get update
sudo apt-get install -y libdevmapper-dev libgpgme-dev
git clone -b v1.15.0 --depth=1 https://github.com/containers/skopeo.git ~/go/src/github.com/containers/skopeo
git clone -b v1.15.1 --depth=1 https://github.com/containers/skopeo.git ~/go/src/github.com/containers/skopeo
pushd ~/go/src/github.com/containers/skopeo
make bin/skopeo
sudo make install DISABLE_DOCS=1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,7 @@ jobs:
run: |
sudo apt-get update
sudo apt-get install -y libdevmapper-dev libgpgme-dev
git clone -b v1.15.0 --depth=1 https://github.com/containers/skopeo.git ~/go/src/github.com/containers/skopeo
git clone -b v1.15.1 --depth=1 https://github.com/containers/skopeo.git ~/go/src/github.com/containers/skopeo
pushd ~/go/src/github.com/containers/skopeo
make bin/skopeo
sudo make install DISABLE_DOCS=1
Expand Down
4 changes: 2 additions & 2 deletions deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
},
"imports": {
"dax": "https://jsr.io/@david/dax/0.40.1/mod.ts",
"esbuild/": "https://deno.land/x/[email protected]/",
"std/": "https://deno.land/std@0.216.0/"
"esbuild": "https://deno.land/x/[email protected]/wasm.js",
"std/": "https://deno.land/std@0.224.0/"
},
"nodeModulesDir": false,
"lint": {
Expand Down
15 changes: 9 additions & 6 deletions deno.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions dprint.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@
"venv"
],
"plugins": [
"https://plugins.dprint.dev/typescript-0.88.7.wasm",
"https://plugins.dprint.dev/json-0.19.1.wasm",
"https://plugins.dprint.dev/markdown-0.16.3.wasm",
"https://plugins.dprint.dev/toml-0.5.4.wasm",
"https://plugins.dprint.dev/typescript-0.90.5.wasm",
"https://plugins.dprint.dev/json-0.19.2.wasm",
"https://plugins.dprint.dev/markdown-0.17.0.wasm",
"https://plugins.dprint.dev/toml-0.6.1.wasm",
"https://plugins.dprint.dev/dockerfile-0.3.0.wasm"
// "https://plugins.dprint.dev/disrupted/css-0.2.2.wasm" (currently broken)
]
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"private": true,
"type": "module",
"devDependencies": {
"@std/cli": "npm:@jsr/std__cli@^0.224.0",
"@std/cli": "npm:@jsr/[email protected]",
"@tsconfig/node18": "^18.2.4",
"@tsconfig/strictest": "^2.0.5",
"@types/node": "^18.19.33",
Expand Down
4 changes: 1 addition & 3 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions scripts/core-js-builder.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#!/usr/bin/env -S pnpm ts-node -T
import builder from "core-js-builder";
import { transform } from "esbuild";
import { gzipSize } from "gzip-size";
import { parse } from "./vendored/flags.ts";
import { transform } from "esbuild";
import { parseArgs } from "@std/cli/parse-args";

const args = parse(process.argv.slice(2), {
const args = parseArgs(process.argv.slice(2), {
string: ["targets", "format"],
default: {
targets:
Expand Down
4 changes: 2 additions & 2 deletions scripts/core-js-compat.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#!/usr/bin/env -S pnpm ts-node -T
import compat from "core-js-compat";
import { parse } from "./vendored/flags.ts";
import { parseArgs } from "@std/cli/parse-args";

const args = parse(process.argv.slice(2), {
const args = parseArgs(process.argv.slice(2), {
boolean: "inverse",
string: ["targets", "version"],
default: {
Expand Down
2 changes: 1 addition & 1 deletion scripts/deno/core-js-builder.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#!/usr/bin/env -S DENO_NO_PACKAGE_JSON=1 deno run --no-prompt --allow-net=deno.land --allow-env=TMPDIR,TMP,TEMP --allow-read --allow-write=.,/tmp
import builder from "npm:core-js-builder@3";
import * as esbuild from "esbuild/wasm.js";
import { parseArgs } from "std/cli/mod.ts";
import { gzipSize } from "npm:gzip-size";
import * as esbuild from "esbuild";

const args = parseArgs(Deno.args, {
string: ["targets", "format"],
Expand Down

0 comments on commit b6e0646

Please sign in to comment.