Skip to content

Commit c7a4f83

Browse files
romelgomezosnoser1
authored andcommitted
build(app): upgrade to angular 8 and add yarn (#3)
* upgrade to angular 8 and add docker * remove docker, add yarn flag * (chore) forgot save :-)
1 parent 31fa8ae commit c7a4f83

10 files changed

+7435
-11411
lines changed

angular.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
{
22
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
33
"version": 1,
4+
"cli": {
5+
"packageManager": "yarn"
6+
},
47
"newProjectRoot": "projects",
58
"projects": {
69
"ngvenezuela-org": {
@@ -139,4 +142,4 @@
139142
}
140143
},
141144
"defaultProject": "ngvenezuela-org"
142-
}
145+
}

bash_scripts/README.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Set of bash scripts that help for build, install and run this project
2+
3+
- Install yarn
4+
5+
`source bash_scripts/install_yarn.sh`

bash_scripts/install_yarn.sh

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/bash
2+
3+
# ref: https://yarnpkg.com/en/docs/install#debian-stable
4+
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
5+
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
6+
sudo apt-get update
7+
sudo apt-get install yarn

src/browserslist browserslist

File renamed without changes.

0 commit comments

Comments
 (0)