Skip to content

Commit

Permalink
chore(labs): copy build artifacts into the build git repo (#4589)
Browse files Browse the repository at this point in the history
  • Loading branch information
mhevery committed Jun 25, 2023
1 parent fa38bd3 commit 97a8245
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
branches:
- main
- next
- qwik-labs
workflow_dispatch:
inputs:
disttag:
Expand Down Expand Up @@ -452,6 +453,9 @@ jobs:
mv dist-dev-create-qwik/* packages/create-qwik/dist/
mkdir -p packages/eslint-plugin-qwik/dist/
mv dist-dev-eslint-plugin-qwik/* packages/eslint-plugin-qwik/dist/
mv builderio-qwiklabs-distribution/lib packages/qwik-labs/lib
mv builderio-qwiklabs-distribution/lib-types packages/qwik-labs/lib-types
mv builderio-qwiklabs-distribution/vite/* packages/qwik-labs/vite/
- name: Install NPM Dependencies
run: pnpm install --frozen-lockfile
Expand Down
2 changes: 2 additions & 0 deletions packages/qwik-labs/src/qwik-types/public-api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ export const untypedAppUrl = function appUrl(
};

/**
* Creates a new object from `obj` by omitting a set of `keys`.
*
* @public
*/
export function omitProps<T, KEYS extends keyof T>(obj: T, keys: KEYS[]): Omit<T, KEYS> {
Expand Down

0 comments on commit 97a8245

Please sign in to comment.