Skip to content

Commit bd26328

Browse files
committed
fix conflicts
2 parents cf5c919 + 1cb26cf commit bd26328

File tree

50 files changed

+13783
-591
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+13783
-591
lines changed

.github/workflows/release.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ on:
1717

1818
env:
1919
GHJK_VERSION: "f380522"
20-
DENO_VERSION: "1.40.1"
20+
DENO_VERSION: "1.41.0"
2121
REGISTRY_IMAGE: ghcr.io/${{ github.repository_owner }}/typegate
2222

2323
jobs:
@@ -120,33 +120,33 @@ jobs:
120120
# we cd next to the file so that the its parent dirs
121121
# aren't present in the tar
122122
cd target/${{ matrix.target }}/release/
123-
tar czvf ../../../meta-cli-${{ steps.latest-tag.outputs.tag }}-${{ matrix.target }}.tar.gz "meta${{ matrix.suffix }}"
123+
tar czvf ../../../meta-cli-thin-${{ steps.latest-tag.outputs.tag }}-${{ matrix.target }}.tar.gz "meta${{ matrix.suffix }}"
124124
cd ../../../
125125
- if: ${{ matrix.target != 'aarch64-unknown-linux-gnu' }}
126126
shell: bash
127127
run: |
128128
cargo build --release --locked --package meta-cli --target ${{ matrix.target }} --features typegate -v
129129
cd target/${{ matrix.target }}/release/
130-
tar czvf ../../../meta-cli-full-${{ steps.latest-tag.outputs.tag }}-${{ matrix.target }}.tar.gz "meta${{ matrix.suffix }}"
130+
tar czvf ../../../meta-cli-${{ steps.latest-tag.outputs.tag }}-${{ matrix.target }}.tar.gz "meta${{ matrix.suffix }}"
131131
cd ../../../
132132
133133
cargo build --release --locked --package meta-cli --target ${{ matrix.target }}
134134
cd target/${{ matrix.target }}/release/
135-
tar czvf ../../../meta-cli-${{ steps.latest-tag.outputs.tag }}-${{ matrix.target }}.tar.gz "meta${{ matrix.suffix }}"
135+
tar czvf ../../../meta-cli-thin-${{ steps.latest-tag.outputs.tag }}-${{ matrix.target }}.tar.gz "meta${{ matrix.suffix }}"
136136
cd ../../../
137-
# full meta-cli is not avail for arm64 linux (waiting on arm64 linux machines for Gh CI)
137+
# fat meta-cli is not avail for arm64 linux (waiting on arm64 linux machines for Gh CI)
138138
- if: ${{ matrix.target != 'aarch64-unknown-linux-gnu' }}
139139
uses: svenstaro/upload-release-action@v2
140140
with:
141141
tag: ${{ steps.latest-tag.outputs.tag }}
142-
file: "meta-cli-full-${{ steps.latest-tag.outputs.tag }}-${{ matrix.target }}.tar.gz"
143-
asset_name: "meta-cli-full-${{ steps.latest-tag.outputs.tag }}-${{ matrix.target }}.tar.gz"
142+
file: "meta-cli-${{ steps.latest-tag.outputs.tag }}-${{ matrix.target }}.tar.gz"
143+
asset_name: "meta-cli-${{ steps.latest-tag.outputs.tag }}-${{ matrix.target }}.tar.gz"
144144
overwrite: ${{ inputs.ovewriteArtifacts }}
145145
- uses: svenstaro/upload-release-action@v2
146146
with:
147147
tag: ${{ steps.latest-tag.outputs.tag }}
148-
file: "meta-cli-${{ steps.latest-tag.outputs.tag }}-${{ matrix.target }}.tar.gz"
149-
asset_name: "meta-cli-${{ steps.latest-tag.outputs.tag }}-${{ matrix.target }}.tar.gz"
148+
file: "meta-cli-thin-${{ steps.latest-tag.outputs.tag }}-${{ matrix.target }}.tar.gz"
149+
asset_name: "meta-cli-thin-${{ steps.latest-tag.outputs.tag }}-${{ matrix.target }}.tar.gz"
150150
overwrite: ${{ inputs.ovewriteArtifacts }}
151151

152152
typegraph:

.github/workflows/tests.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010

1111
env:
1212
GHJK_VERSION: "f380522"
13-
DENO_VERSION: "1.40.1"
13+
DENO_VERSION: "1.41.0"
1414
RUST_BACKTRACE: "full"
1515
RUST_LOG: "info,swc_ecma_codegen=off,tracing::span=off"
1616

@@ -121,9 +121,8 @@ jobs:
121121
strategy:
122122
matrix:
123123
include:
124-
# TODO
125-
# - os: macos-latest
126-
# activate: "source .venv/bin/activate"
124+
- os: macos-latest
125+
activate: "source .venv/bin/activate"
127126
- os: macos-14
128127
activate: "source .venv/bin/activate"
129128
#- os: windows-latest

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,11 @@ repos:
5050
- id: deno-fmt
5151
name: Deno format
5252
language: system
53-
entry: bash -c 'cd typegate && deno fmt --ignore=native,src/typegraphs,tmp,tests/e2e/nextjs && cd ../dev && deno fmt'
53+
entry: bash -c 'cd typegate && deno fmt --ignore=native,src/typegraphs,tmp,tests/e2e/nextjs && cd ../dev && deno fmt && cd ../typegraph/node && deno fmt --ignore=node_modules,dist'
5454
pass_filenames: false
5555
types:
5656
- ts
57-
files: ^(typegate|dev)/
57+
files: ^(typegate|dev|typegraph/node)/
5858
- id: deno-lint
5959
name: Deno lint
6060
language: system

0 commit comments

Comments
 (0)