mirror of
https://github.com/penpot/penpot.git
synced 2026-02-12 14:42:56 +00:00
✨ Remove mention of yarn on several files
This commit is contained in:
105
.gitpod.yml
105
.gitpod.yml
@@ -1,105 +0,0 @@
|
|||||||
image:
|
|
||||||
file: docker/gitpod/Dockerfile
|
|
||||||
|
|
||||||
ports:
|
|
||||||
# nginx
|
|
||||||
- port: 3449
|
|
||||||
onOpen: open-preview
|
|
||||||
|
|
||||||
# frontend nREPL
|
|
||||||
- port: 3447
|
|
||||||
onOpen: ignore
|
|
||||||
visibility: private
|
|
||||||
|
|
||||||
# frontend shadow server
|
|
||||||
- port: 3448
|
|
||||||
onOpen: ignore
|
|
||||||
visibility: private
|
|
||||||
|
|
||||||
# backend
|
|
||||||
- port: 6060
|
|
||||||
onOpen: ignore
|
|
||||||
|
|
||||||
# exporter shadow server
|
|
||||||
- port: 9630
|
|
||||||
onOpen: ignore
|
|
||||||
visibility: private
|
|
||||||
|
|
||||||
# exporter http server
|
|
||||||
- port: 6061
|
|
||||||
onOpen: ignore
|
|
||||||
|
|
||||||
# mailhog web interface
|
|
||||||
- port: 8025
|
|
||||||
onOpen: ignore
|
|
||||||
|
|
||||||
# mailhog postfix
|
|
||||||
- port: 1025
|
|
||||||
onOpen: ignore
|
|
||||||
|
|
||||||
# postgres
|
|
||||||
- port: 5432
|
|
||||||
onOpen: ignore
|
|
||||||
|
|
||||||
# redis
|
|
||||||
- port: 6379
|
|
||||||
onOpen: ignore
|
|
||||||
|
|
||||||
# openldap
|
|
||||||
- port: 389
|
|
||||||
onOpen: ignore
|
|
||||||
|
|
||||||
tasks:
|
|
||||||
# https://github.com/gitpod-io/gitpod/issues/666#issuecomment-534347856
|
|
||||||
- name: gulp
|
|
||||||
command: >
|
|
||||||
cd $GITPOD_REPO_ROOT/frontend/;
|
|
||||||
yarn && gp sync-done 'frontend-yarn';
|
|
||||||
npx gulp --theme=${PENPOT_THEME} watch
|
|
||||||
|
|
||||||
- name: frontend shadow watch
|
|
||||||
command: >
|
|
||||||
cd $GITPOD_REPO_ROOT/frontend/;
|
|
||||||
gp sync-await 'frontend-yarn';
|
|
||||||
npx shadow-cljs watch main
|
|
||||||
|
|
||||||
- init: gp await-port 5432 && psql -f $GITPOD_REPO_ROOT/docker/gitpod/files/postgresql_init.sql
|
|
||||||
name: backend
|
|
||||||
command: >
|
|
||||||
cd $GITPOD_REPO_ROOT/backend/;
|
|
||||||
./scripts/start-dev
|
|
||||||
|
|
||||||
- name: exporter shadow watch
|
|
||||||
command:
|
|
||||||
cd $GITPOD_REPO_ROOT/exporter/;
|
|
||||||
gp sync-await 'frontend-yarn';
|
|
||||||
yarn && npx shadow-cljs watch main
|
|
||||||
|
|
||||||
- name: exporter web server
|
|
||||||
command: >
|
|
||||||
cd $GITPOD_REPO_ROOT/exporter/;
|
|
||||||
./scripts/wait-and-start.sh
|
|
||||||
|
|
||||||
- name: signed terminal
|
|
||||||
before: >
|
|
||||||
[[ ! -z ${GNUGPG} ]] &&
|
|
||||||
cd ~ &&
|
|
||||||
rm -rf .gnupg &&
|
|
||||||
echo ${GNUGPG} | base64 -d | tar --no-same-owner -xzvf -
|
|
||||||
init: >
|
|
||||||
[[ ! -z ${GNUGPG_KEY} ]] &&
|
|
||||||
git config --global commit.gpgsign true &&
|
|
||||||
git config --global user.signingkey ${GNUGPG_KEY}
|
|
||||||
command: cd $GITPOD_REPO_ROOT
|
|
||||||
|
|
||||||
- name: redis
|
|
||||||
command: redis-server
|
|
||||||
|
|
||||||
- before: go get github.com/mailhog/MailHog
|
|
||||||
name: mailhog
|
|
||||||
command: MailHog
|
|
||||||
|
|
||||||
- name: Nginx
|
|
||||||
command: >
|
|
||||||
nginx &&
|
|
||||||
multitail /var/log/nginx/access.log -I /var/log/nginx/error.log
|
|
||||||
11
.yarnrc.yml
11
.yarnrc.yml
@@ -1,11 +0,0 @@
|
|||||||
enableGlobalCache: true
|
|
||||||
|
|
||||||
enableImmutableCache: false
|
|
||||||
|
|
||||||
enableImmutableInstalls: false
|
|
||||||
|
|
||||||
enableTelemetry: false
|
|
||||||
|
|
||||||
httpTimeout: 600000
|
|
||||||
|
|
||||||
nodeLinker: node-modules
|
|
||||||
@@ -120,17 +120,12 @@ them on your system, you can run them with:
|
|||||||
|
|
||||||
```bash
|
```bash
|
||||||
# Check formatting
|
# Check formatting
|
||||||
yarn fmt:clj:check
|
./scripts/fmt
|
||||||
|
|
||||||
# Check and fix formatting
|
# Lint
|
||||||
yarn fmt:clj
|
./scripts/lint
|
||||||
|
|
||||||
# Run the linter
|
|
||||||
yarn lint:clj
|
|
||||||
```
|
```
|
||||||
|
|
||||||
There are more choices in `package.json`.
|
|
||||||
|
|
||||||
Ideally, you should run these commands as git pre-commit hooks. A convenient way
|
Ideally, you should run these commands as git pre-commit hooks. A convenient way
|
||||||
of defining them is to use [Husky](https://typicode.github.io/husky/#/).
|
of defining them is to use [Husky](https://typicode.github.io/husky/#/).
|
||||||
|
|
||||||
|
|||||||
7
backend/.gitignore
vendored
7
backend/.gitignore
vendored
@@ -1,7 +0,0 @@
|
|||||||
.pnp.*
|
|
||||||
.yarn/*
|
|
||||||
!.yarn/patches
|
|
||||||
!.yarn/plugins
|
|
||||||
!.yarn/releases
|
|
||||||
!.yarn/sdks
|
|
||||||
!.yarn/versions
|
|
||||||
7
common/.gitignore
vendored
7
common/.gitignore
vendored
@@ -1,7 +0,0 @@
|
|||||||
.pnp.*
|
|
||||||
.yarn/*
|
|
||||||
!.yarn/patches
|
|
||||||
!.yarn/plugins
|
|
||||||
!.yarn/releases
|
|
||||||
!.yarn/sdks
|
|
||||||
!.yarn/versions
|
|
||||||
@@ -1,33 +0,0 @@
|
|||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
sudo chown penpot:users /home/penpot
|
|
||||||
|
|
||||||
cd ~;
|
|
||||||
|
|
||||||
source ~/.bashrc
|
|
||||||
|
|
||||||
set -e;
|
|
||||||
|
|
||||||
echo "[start-tmux.sh] Installing node dependencies"
|
|
||||||
pushd ~/penpot/exporter/
|
|
||||||
yarn install
|
|
||||||
popd
|
|
||||||
|
|
||||||
tmux -2 new-session -d -s penpot
|
|
||||||
|
|
||||||
tmux rename-window -t penpot:0 'exporter'
|
|
||||||
tmux select-window -t penpot:0
|
|
||||||
tmux send-keys -t penpot 'cd penpot/exporter' enter C-l
|
|
||||||
tmux send-keys -t penpot 'rm -f target/app.js*' enter C-l
|
|
||||||
tmux send-keys -t penpot 'clojure -M:dev:shadow-cljs watch main' enter
|
|
||||||
|
|
||||||
tmux split-window -v
|
|
||||||
tmux send-keys -t penpot 'cd penpot/exporter' enter C-l
|
|
||||||
tmux send-keys -t penpot './scripts/wait-and-start.sh' enter
|
|
||||||
|
|
||||||
tmux new-window -t penpot:1 -n 'backend'
|
|
||||||
tmux select-window -t penpot:1
|
|
||||||
tmux send-keys -t penpot 'cd penpot/backend' enter C-l
|
|
||||||
tmux send-keys -t penpot './scripts/start-dev' enter
|
|
||||||
|
|
||||||
tmux -2 attach-session -t penpot
|
|
||||||
7
exporter/.gitignore
vendored
7
exporter/.gitignore
vendored
@@ -1,7 +0,0 @@
|
|||||||
.pnp.*
|
|
||||||
.yarn/*
|
|
||||||
!.yarn/patches
|
|
||||||
!.yarn/plugins
|
|
||||||
!.yarn/releases
|
|
||||||
!.yarn/sdks
|
|
||||||
!.yarn/versions
|
|
||||||
@@ -10,7 +10,7 @@ all the necessary data to import them into a Penpot application).
|
|||||||
### How to install
|
### How to install
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
yarn add @penpot/library
|
pnpm add @penpot/library
|
||||||
```
|
```
|
||||||
|
|
||||||
### Example of use
|
### Example of use
|
||||||
|
|||||||
1299
library/yarn.lock
1299
library/yarn.lock
File diff suppressed because it is too large
Load Diff
27170
plugins/package-lock.json
generated
27170
plugins/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
60
run-ci.sh
60
run-ci.sh
@@ -3,48 +3,48 @@
|
|||||||
set -e
|
set -e
|
||||||
|
|
||||||
echo "################ test common ################"
|
echo "################ test common ################"
|
||||||
cd common
|
pushd common
|
||||||
yarn install
|
pnpm install
|
||||||
yarn run fmt:clj:check
|
pnpm run fmt:clj:check
|
||||||
yarn run lint:clj
|
pnpm run lint:clj
|
||||||
clojure -M:dev:test
|
clojure -M:dev:test
|
||||||
yarn run test
|
pnpm run test
|
||||||
cd ..
|
popd
|
||||||
|
|
||||||
echo "################ test frontend ################"
|
echo "################ test frontend ################"
|
||||||
cd frontend
|
pushd frontend
|
||||||
yarn install
|
pnpm install
|
||||||
yarn run fmt:clj:check
|
pnpm run fmt:clj:check
|
||||||
yarn run fmt:js:check
|
pnpm run fmt:js:check
|
||||||
yarn run lint:scss
|
pnpm run lint:scss
|
||||||
yarn run lint:clj
|
pnpm run lint:clj
|
||||||
yarn run test
|
pnpm run test
|
||||||
cd ..
|
popd
|
||||||
|
|
||||||
echo "################ test integration ################"
|
echo "################ test integration ################"
|
||||||
cd frontend
|
pushd frontend
|
||||||
yarn install
|
pnpm install
|
||||||
yarn run test:e2e -x --workers=4
|
pnpm run test:e2e -x --workers=4
|
||||||
cd ..
|
popd
|
||||||
|
|
||||||
echo "################ test backend ################"
|
echo "################ test backend ################"
|
||||||
cd backend
|
pushd backend
|
||||||
yarn install
|
pnpm install
|
||||||
yarn run fmt:clj:check
|
pnpm run fmt:clj:check
|
||||||
yarn run lint:clj
|
pnpm run lint:clj
|
||||||
clojure -M:dev:test --reporter kaocha.report/documentation
|
clojure -M:dev:test --reporter kaocha.report/documentation
|
||||||
cd ..
|
popd
|
||||||
|
|
||||||
echo "################ test exporter ################"
|
echo "################ test exporter ################"
|
||||||
cd exporter
|
pushd exporter
|
||||||
yarn install
|
pnpm install
|
||||||
yarn run fmt:clj:check
|
pnpm run fmt:clj:check
|
||||||
yarn run lint:clj
|
pnpm run lint:clj
|
||||||
cd ..
|
popd
|
||||||
|
|
||||||
echo "################ test render-wasm ################"
|
echo "################ test render-wasm ################"
|
||||||
cd render-wasm
|
pushd render-wasm
|
||||||
cargo fmt --check
|
cargo fmt --check
|
||||||
./lint --debug
|
./lint --debug
|
||||||
./test
|
./test
|
||||||
cd ..
|
popd
|
||||||
|
|||||||
302
yarn.lock
302
yarn.lock
@@ -1,302 +0,0 @@
|
|||||||
# This file is generated by running "yarn install" inside your project.
|
|
||||||
# Manual changes might be lost - proceed with caution!
|
|
||||||
|
|
||||||
__metadata:
|
|
||||||
version: 8
|
|
||||||
cacheKey: 10c0
|
|
||||||
|
|
||||||
"@esbuild/aix-ppc64@npm:0.25.12":
|
|
||||||
version: 0.25.12
|
|
||||||
resolution: "@esbuild/aix-ppc64@npm:0.25.12"
|
|
||||||
conditions: os=aix & cpu=ppc64
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@esbuild/android-arm64@npm:0.25.12":
|
|
||||||
version: 0.25.12
|
|
||||||
resolution: "@esbuild/android-arm64@npm:0.25.12"
|
|
||||||
conditions: os=android & cpu=arm64
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@esbuild/android-arm@npm:0.25.12":
|
|
||||||
version: 0.25.12
|
|
||||||
resolution: "@esbuild/android-arm@npm:0.25.12"
|
|
||||||
conditions: os=android & cpu=arm
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@esbuild/android-x64@npm:0.25.12":
|
|
||||||
version: 0.25.12
|
|
||||||
resolution: "@esbuild/android-x64@npm:0.25.12"
|
|
||||||
conditions: os=android & cpu=x64
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@esbuild/darwin-arm64@npm:0.25.12":
|
|
||||||
version: 0.25.12
|
|
||||||
resolution: "@esbuild/darwin-arm64@npm:0.25.12"
|
|
||||||
conditions: os=darwin & cpu=arm64
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@esbuild/darwin-x64@npm:0.25.12":
|
|
||||||
version: 0.25.12
|
|
||||||
resolution: "@esbuild/darwin-x64@npm:0.25.12"
|
|
||||||
conditions: os=darwin & cpu=x64
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@esbuild/freebsd-arm64@npm:0.25.12":
|
|
||||||
version: 0.25.12
|
|
||||||
resolution: "@esbuild/freebsd-arm64@npm:0.25.12"
|
|
||||||
conditions: os=freebsd & cpu=arm64
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@esbuild/freebsd-x64@npm:0.25.12":
|
|
||||||
version: 0.25.12
|
|
||||||
resolution: "@esbuild/freebsd-x64@npm:0.25.12"
|
|
||||||
conditions: os=freebsd & cpu=x64
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@esbuild/linux-arm64@npm:0.25.12":
|
|
||||||
version: 0.25.12
|
|
||||||
resolution: "@esbuild/linux-arm64@npm:0.25.12"
|
|
||||||
conditions: os=linux & cpu=arm64
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@esbuild/linux-arm@npm:0.25.12":
|
|
||||||
version: 0.25.12
|
|
||||||
resolution: "@esbuild/linux-arm@npm:0.25.12"
|
|
||||||
conditions: os=linux & cpu=arm
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@esbuild/linux-ia32@npm:0.25.12":
|
|
||||||
version: 0.25.12
|
|
||||||
resolution: "@esbuild/linux-ia32@npm:0.25.12"
|
|
||||||
conditions: os=linux & cpu=ia32
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@esbuild/linux-loong64@npm:0.25.12":
|
|
||||||
version: 0.25.12
|
|
||||||
resolution: "@esbuild/linux-loong64@npm:0.25.12"
|
|
||||||
conditions: os=linux & cpu=loong64
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@esbuild/linux-mips64el@npm:0.25.12":
|
|
||||||
version: 0.25.12
|
|
||||||
resolution: "@esbuild/linux-mips64el@npm:0.25.12"
|
|
||||||
conditions: os=linux & cpu=mips64el
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@esbuild/linux-ppc64@npm:0.25.12":
|
|
||||||
version: 0.25.12
|
|
||||||
resolution: "@esbuild/linux-ppc64@npm:0.25.12"
|
|
||||||
conditions: os=linux & cpu=ppc64
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@esbuild/linux-riscv64@npm:0.25.12":
|
|
||||||
version: 0.25.12
|
|
||||||
resolution: "@esbuild/linux-riscv64@npm:0.25.12"
|
|
||||||
conditions: os=linux & cpu=riscv64
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@esbuild/linux-s390x@npm:0.25.12":
|
|
||||||
version: 0.25.12
|
|
||||||
resolution: "@esbuild/linux-s390x@npm:0.25.12"
|
|
||||||
conditions: os=linux & cpu=s390x
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@esbuild/linux-x64@npm:0.25.12":
|
|
||||||
version: 0.25.12
|
|
||||||
resolution: "@esbuild/linux-x64@npm:0.25.12"
|
|
||||||
conditions: os=linux & cpu=x64
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@esbuild/netbsd-arm64@npm:0.25.12":
|
|
||||||
version: 0.25.12
|
|
||||||
resolution: "@esbuild/netbsd-arm64@npm:0.25.12"
|
|
||||||
conditions: os=netbsd & cpu=arm64
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@esbuild/netbsd-x64@npm:0.25.12":
|
|
||||||
version: 0.25.12
|
|
||||||
resolution: "@esbuild/netbsd-x64@npm:0.25.12"
|
|
||||||
conditions: os=netbsd & cpu=x64
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@esbuild/openbsd-arm64@npm:0.25.12":
|
|
||||||
version: 0.25.12
|
|
||||||
resolution: "@esbuild/openbsd-arm64@npm:0.25.12"
|
|
||||||
conditions: os=openbsd & cpu=arm64
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@esbuild/openbsd-x64@npm:0.25.12":
|
|
||||||
version: 0.25.12
|
|
||||||
resolution: "@esbuild/openbsd-x64@npm:0.25.12"
|
|
||||||
conditions: os=openbsd & cpu=x64
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@esbuild/openharmony-arm64@npm:0.25.12":
|
|
||||||
version: 0.25.12
|
|
||||||
resolution: "@esbuild/openharmony-arm64@npm:0.25.12"
|
|
||||||
conditions: os=openharmony & cpu=arm64
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@esbuild/sunos-x64@npm:0.25.12":
|
|
||||||
version: 0.25.12
|
|
||||||
resolution: "@esbuild/sunos-x64@npm:0.25.12"
|
|
||||||
conditions: os=sunos & cpu=x64
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@esbuild/win32-arm64@npm:0.25.12":
|
|
||||||
version: 0.25.12
|
|
||||||
resolution: "@esbuild/win32-arm64@npm:0.25.12"
|
|
||||||
conditions: os=win32 & cpu=arm64
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@esbuild/win32-ia32@npm:0.25.12":
|
|
||||||
version: 0.25.12
|
|
||||||
resolution: "@esbuild/win32-ia32@npm:0.25.12"
|
|
||||||
conditions: os=win32 & cpu=ia32
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@esbuild/win32-x64@npm:0.25.12":
|
|
||||||
version: 0.25.12
|
|
||||||
resolution: "@esbuild/win32-x64@npm:0.25.12"
|
|
||||||
conditions: os=win32 & cpu=x64
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"@types/node@npm:^20.12.7":
|
|
||||||
version: 20.12.12
|
|
||||||
resolution: "@types/node@npm:20.12.12"
|
|
||||||
dependencies:
|
|
||||||
undici-types: "npm:~5.26.4"
|
|
||||||
checksum: 10c0/f374b763c744e8f16e4f38cf6e2c0eef31781ec9228c9e43a6f267880fea420fab0a238b59f10a7cb3444e49547c5e3785787e371fc242307310995b21988812
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"esbuild@npm:^0.25.9":
|
|
||||||
version: 0.25.12
|
|
||||||
resolution: "esbuild@npm:0.25.12"
|
|
||||||
dependencies:
|
|
||||||
"@esbuild/aix-ppc64": "npm:0.25.12"
|
|
||||||
"@esbuild/android-arm": "npm:0.25.12"
|
|
||||||
"@esbuild/android-arm64": "npm:0.25.12"
|
|
||||||
"@esbuild/android-x64": "npm:0.25.12"
|
|
||||||
"@esbuild/darwin-arm64": "npm:0.25.12"
|
|
||||||
"@esbuild/darwin-x64": "npm:0.25.12"
|
|
||||||
"@esbuild/freebsd-arm64": "npm:0.25.12"
|
|
||||||
"@esbuild/freebsd-x64": "npm:0.25.12"
|
|
||||||
"@esbuild/linux-arm": "npm:0.25.12"
|
|
||||||
"@esbuild/linux-arm64": "npm:0.25.12"
|
|
||||||
"@esbuild/linux-ia32": "npm:0.25.12"
|
|
||||||
"@esbuild/linux-loong64": "npm:0.25.12"
|
|
||||||
"@esbuild/linux-mips64el": "npm:0.25.12"
|
|
||||||
"@esbuild/linux-ppc64": "npm:0.25.12"
|
|
||||||
"@esbuild/linux-riscv64": "npm:0.25.12"
|
|
||||||
"@esbuild/linux-s390x": "npm:0.25.12"
|
|
||||||
"@esbuild/linux-x64": "npm:0.25.12"
|
|
||||||
"@esbuild/netbsd-arm64": "npm:0.25.12"
|
|
||||||
"@esbuild/netbsd-x64": "npm:0.25.12"
|
|
||||||
"@esbuild/openbsd-arm64": "npm:0.25.12"
|
|
||||||
"@esbuild/openbsd-x64": "npm:0.25.12"
|
|
||||||
"@esbuild/openharmony-arm64": "npm:0.25.12"
|
|
||||||
"@esbuild/sunos-x64": "npm:0.25.12"
|
|
||||||
"@esbuild/win32-arm64": "npm:0.25.12"
|
|
||||||
"@esbuild/win32-ia32": "npm:0.25.12"
|
|
||||||
"@esbuild/win32-x64": "npm:0.25.12"
|
|
||||||
dependenciesMeta:
|
|
||||||
"@esbuild/aix-ppc64":
|
|
||||||
optional: true
|
|
||||||
"@esbuild/android-arm":
|
|
||||||
optional: true
|
|
||||||
"@esbuild/android-arm64":
|
|
||||||
optional: true
|
|
||||||
"@esbuild/android-x64":
|
|
||||||
optional: true
|
|
||||||
"@esbuild/darwin-arm64":
|
|
||||||
optional: true
|
|
||||||
"@esbuild/darwin-x64":
|
|
||||||
optional: true
|
|
||||||
"@esbuild/freebsd-arm64":
|
|
||||||
optional: true
|
|
||||||
"@esbuild/freebsd-x64":
|
|
||||||
optional: true
|
|
||||||
"@esbuild/linux-arm":
|
|
||||||
optional: true
|
|
||||||
"@esbuild/linux-arm64":
|
|
||||||
optional: true
|
|
||||||
"@esbuild/linux-ia32":
|
|
||||||
optional: true
|
|
||||||
"@esbuild/linux-loong64":
|
|
||||||
optional: true
|
|
||||||
"@esbuild/linux-mips64el":
|
|
||||||
optional: true
|
|
||||||
"@esbuild/linux-ppc64":
|
|
||||||
optional: true
|
|
||||||
"@esbuild/linux-riscv64":
|
|
||||||
optional: true
|
|
||||||
"@esbuild/linux-s390x":
|
|
||||||
optional: true
|
|
||||||
"@esbuild/linux-x64":
|
|
||||||
optional: true
|
|
||||||
"@esbuild/netbsd-arm64":
|
|
||||||
optional: true
|
|
||||||
"@esbuild/netbsd-x64":
|
|
||||||
optional: true
|
|
||||||
"@esbuild/openbsd-arm64":
|
|
||||||
optional: true
|
|
||||||
"@esbuild/openbsd-x64":
|
|
||||||
optional: true
|
|
||||||
"@esbuild/openharmony-arm64":
|
|
||||||
optional: true
|
|
||||||
"@esbuild/sunos-x64":
|
|
||||||
optional: true
|
|
||||||
"@esbuild/win32-arm64":
|
|
||||||
optional: true
|
|
||||||
"@esbuild/win32-ia32":
|
|
||||||
optional: true
|
|
||||||
"@esbuild/win32-x64":
|
|
||||||
optional: true
|
|
||||||
bin:
|
|
||||||
esbuild: bin/esbuild
|
|
||||||
checksum: 10c0/c205357531423220a9de8e1e6c6514242bc9b1666e762cd67ccdf8fdfdc3f1d0bd76f8d9383958b97ad4c953efdb7b6e8c1f9ca5951cd2b7c5235e8755b34a6b
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
|
|
||||||
"penpot@workspace:.":
|
|
||||||
version: 0.0.0-use.local
|
|
||||||
resolution: "penpot@workspace:."
|
|
||||||
dependencies:
|
|
||||||
"@types/node": "npm:^20.12.7"
|
|
||||||
esbuild: "npm:^0.25.9"
|
|
||||||
languageName: unknown
|
|
||||||
linkType: soft
|
|
||||||
|
|
||||||
"undici-types@npm:~5.26.4":
|
|
||||||
version: 5.26.5
|
|
||||||
resolution: "undici-types@npm:5.26.5"
|
|
||||||
checksum: 10c0/bb673d7876c2d411b6eb6c560e0c571eef4a01c1c19925175d16e3a30c4c428181fb8d7ae802a261f283e4166a0ac435e2f505743aa9e45d893f9a3df017b501
|
|
||||||
languageName: node
|
|
||||||
linkType: hard
|
|
||||||
Reference in New Issue
Block a user