forked from PanJiaChen/vue-element-admin
-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "feat: Add support for Yarn only. (#1256)"
This reverts commit 0721850.
- Loading branch information
1 parent
0721850
commit 5cd33e4
Showing
10 changed files
with
20,048 additions
and
1,033 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
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 |
---|---|---|
|
@@ -25,6 +25,4 @@ config/certs/*.pem | |
.classpath | ||
.project | ||
|
||
.talismanrc | ||
|
||
package-lock.json | ||
.talismanrc |
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 |
---|---|---|
|
@@ -257,10 +257,10 @@ git clone -b develop [email protected]:adempiere/adempiere-vue.git | |
cd adempiere-vue | ||
|
||
# instale las dependencias | ||
yarn install | ||
npm install | ||
|
||
# corra el proyecto como desarrollador | ||
yarn dev | ||
npm run dev | ||
``` | ||
|
||
Automáticamente se abrirá el siguiente enlace en su navegador http://localhost:9527 | ||
|
@@ -269,26 +269,26 @@ Automáticamente se abrirá el siguiente enlace en su navegador http://localhost | |
|
||
```bash | ||
# Construcción para entornos de prueba | ||
yarn build:stage | ||
npm run build:stage | ||
|
||
# Construcción para entornos de producción | ||
yarn build:prod | ||
npm run build:prod | ||
``` | ||
|
||
## Avanzado | ||
|
||
```bash | ||
# Vista previa con efectos de entorno | ||
yarn preview | ||
npm run preview | ||
|
||
# Vista previa con efectos + análisis de recursos estáticos | ||
yarn preview --report | ||
npm run preview -- --report | ||
|
||
# Chequeo de formato de código | ||
yarn lint | ||
npm run lint | ||
|
||
# Chequeo de formato de código y auto-corrección | ||
yarn lint --fix | ||
npm run lint -- --fix | ||
``` | ||
|
||
Vaya a [Documentación](https://adempiere.github.io/adempiere-vue/es/guide/essentials/deploy.html#compilar) para mayor información. | ||
|
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 |
---|---|---|
|
@@ -275,10 +275,10 @@ git clone -b develop [email protected]:adempiere/adempiere-vue-.git | |
cd adempiere-vue | ||
|
||
# install dependency | ||
yarn install | ||
npm install | ||
|
||
# develop | ||
yarn dev | ||
npm run dev | ||
``` | ||
|
||
This will automatically open http://localhost:9527 | ||
|
@@ -287,26 +287,26 @@ This will automatically open http://localhost:9527 | |
|
||
```bash | ||
# build for test environment | ||
yarn build:stage | ||
npm run build:stage | ||
|
||
# build for production environment | ||
yarn build:prod | ||
npm run build:prod | ||
``` | ||
|
||
## Advanced | ||
|
||
```bash | ||
# preview the release environment effect | ||
yarn preview | ||
npm run preview | ||
|
||
# preview the release environment effect + static resource analysis | ||
yarn preview --report | ||
npm run preview -- --report | ||
|
||
# code format check | ||
yarn lint | ||
npm run lint | ||
|
||
# code format check and auto fix | ||
yarn lint --fix | ||
npm run lint -- --fix | ||
``` | ||
|
||
Refer to [Documentation](https://adempiere.github.io/adempiere-vue/guide/essentials/deploy.html#build) for more information | ||
|
Oops, something went wrong.