Skip to content

Commit

Permalink
chore: publish
Browse files Browse the repository at this point in the history
  • Loading branch information
pipinet committed Sep 30, 2024
1 parent afaa8f6 commit 698560c
Show file tree
Hide file tree
Showing 5 changed files with 4,442 additions and 11 deletions.
1 change: 0 additions & 1 deletion .earthlyignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,3 @@ auto-*.d.ts
.git
.vscode
.github

1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -173,3 +173,4 @@ dist

# Finder (MacOS) folder config
.DS_Store

17 changes: 9 additions & 8 deletions Earthfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,24 +13,25 @@ ARG --global NPM_ACCESS_TOKEN
build-base:
FROM ${NODE_IMAGE}
WORKDIR /app
COPY pnpm-workspace.yaml \
package.json \
.npmrc \
.
RUN npm install -g pnpm@latest-9 --registry=https://registry.npmmirror.com
RUN pnpm fetch --force --dev --registry=https://registry.npmmirror.com
COPY pnpm-lock.yaml \
pnpm-workspace.yaml \
package.json \
.npmrc \
.
RUN npm install -g pnpm@latest-9

Check failure on line 21 in Earthfile

View workflow job for this annotation

GitHub Actions / commit

Error

The command RUN npm install -g pnpm@latest-9 did not complete successfully. Exit code 1
RUN pnpm fetch --frozen-lockfile
SAVE ARTIFACT node_modules AS LOCAL node_modules

check:
FROM +build-base
COPY . .
RUN pnpm install -r --force --dev --registry=https://registry.npmmirror.com
RUN pnpm install -r --prefer-offline
RUN pnpm run build:check

release:
FROM +build-base
COPY . .
RUN pnpm install -r --force --dev --registry=https://registry.npmmirror.com
RUN pnpm install -r --prefer-offline
RUN pnpm version ${APP_VERSION} --no-commit-hooks --no-git-tag-version --allow-same-version
RUN pnpm run release

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,14 @@
"@typescript-eslint/types": "^8.6.0",
"@typescript-eslint/typescript-estree": "^8.6.0",
"@typescript-eslint/utils": "^8.6.0",
"esbuild": "^0.24.0",
"eslint": "^9.10.0",
"eslint-plugin-unused-imports": "^4.1.4",
"eslint-plugin-vue": "^9.28.0",
"fs-extra": "^11.2.0",
"prettier": "^3.3.3",
"taze": "^0.16.9",
"typescript": "^5.6.2",
"esbuild": "^0.24.0"
"typescript": "^5.6.2"
},
"publishConfig": {
"access": "public",
Expand Down
Loading

0 comments on commit 698560c

Please sign in to comment.