-
-
Notifications
You must be signed in to change notification settings - Fork 263
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1505 from analogjs/beta
chore: release 1.10.2
- Loading branch information
Showing
50 changed files
with
1,613 additions
and
909 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
name: Release Test | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
analog_build_tag: | ||
description: 'Analog Build Tag' | ||
required: true | ||
default: 'latest' | ||
type: choice | ||
options: | ||
- latest | ||
- beta | ||
angular_build_tag: | ||
description: 'Angular Build Tag' | ||
required: true | ||
default: 'latest' | ||
type: choice | ||
options: | ||
- latest | ||
- next | ||
nx_build_tag: | ||
description: 'Nx Build Tag' | ||
required: true | ||
default: 'latest' | ||
type: choice | ||
options: | ||
- latest | ||
- canary | ||
|
||
jobs: | ||
create-analog: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/setup-node@v3 | ||
- run: corepack enable | ||
- run: npm --version | ||
- name: Create Analog Application | ||
run: npm create analog@${{ inputs.analog_build_tag }} analog-app -- --skipTailwind --analogSFC=false --template latest | ||
- name: Build, Test, and Validate | ||
run: | | ||
cd analog-app | ||
npm install | ||
npm run build | ||
npm run test | ||
cat ./dist/analog/public/index.html | ||
create-nx-workspace: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/setup-node@v3 | ||
- run: corepack enable | ||
- run: npm --version | ||
- name: Create Nx Workspace | ||
run: | | ||
npx create-nx-workspace@${{ inputs.nx_build_tag }} analog-nx-workspace --preset @analogjs/platform@${{ inputs.analog_build_tag }} --analogAppName my-analog-app --addTailwind=false --addTRPC=false --ci skip | ||
- name: Build, Test, and Validate | ||
run: | | ||
cd analog-nx-workspace | ||
npm install | ||
npx nx build my-analog-app | ||
npx nx test my-analog-app | ||
cat ./dist/my-analog-app/analog/public/index.html | ||
migrate-angular-app: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/setup-node@v3 | ||
- run: corepack enable | ||
- run: npm --version | ||
- name: Create Angular App | ||
run: | | ||
npx @angular/cli@${{ inputs.angular_build_tag }} new my-angular-app --style css --no-ssr | ||
- name: Migrate, Build, Test, and Validate | ||
run: | | ||
cd my-angular-app | ||
npm install @analogjs/platform@${{ inputs.analog_build_tag }} --save-dev | ||
npx ng g @analogjs/platform:init --project my-angular-app --vitest=true | ||
npm run build | ||
npm run test | ||
cat ./dist/analog/public/index.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
35 changes: 35 additions & 0 deletions
35
apps/docs-app/i18n/es/docusaurus-plugin-content-docs/current/support.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
--- | ||
sidebar_position: 5 | ||
--- | ||
|
||
# Soporte | ||
|
||
Ya seas un desarrollador independiente o una gran empresa, ¡tenemos diferentes opciones disponibles para ti! | ||
|
||
## Discord | ||
|
||
Hay un [Servidor Discord](https://chat.analogjs.org) disponible para: | ||
|
||
- Soporte de la comunidad | ||
- Preguntas y respuestas | ||
- Chat general | ||
|
||
## GitHub | ||
|
||
El [código fuente](https://github.com/analogjs/analog) de Analog tiene licencia MIT, es gratuito y de código abierto. Puedes solicitar soporte general de las siguientes maneras: | ||
|
||
- Reportes de errores | ||
- Solicitudes de nuevas funcionalidades | ||
- Pull Requests | ||
- [Contribuciones](/docs/contributing) Generales | ||
|
||
## Soporte dedicado | ||
|
||
Ofrecemos soporte dedicado a través de: | ||
|
||
- Consultoría de arquitectura | ||
- Contratos de soporte empresarial | ||
- Servicios de retención | ||
- Workshops | ||
|
||
- Agenda una [reunión](https://calendly.com/brandontroberts/session) o [Contáctanos](mailto:support@analogjs.org?subject=Dedicated+Support) directamente para hablar sobre las opciones de soporte dedicado. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.