This commit is contained in:
Kyle Ju 2021-06-02 17:59:55 -07:00
Родитель 1ceac8077d
Коммит 515e1bb6a6
2 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -12,9 +12,9 @@ Chrome Platform Status
### Installation
1. Install global CLIs
1. [Google App Engine SDK for Python](https://developers.google.com/appengine/downloads#Google_App_Engine_SDK_for_Python).
1. [Google App Engine SDK for Python](https://cloud.google.com/appengine/docs/standard/python/setting-up-environment). Make sure to select Python 2.7.
1. pip, node, npm.
1. Gulp `npm install -g gulp`
1. Gulp `npm install --global gulp-cli`
1. Install npm dependencies `npm ci`
1. Install other dependencies `npm run deps` and `npm run dev-deps`

Просмотреть файл

@ -7,7 +7,7 @@
"node": ">=6.0.0"
},
"scripts": {
"deps": "pip install -t lib -r requirements.txt --upgrade",
"deps": "python -m pip install -t lib -r requirements.txt --upgrade",
"travis-deps": "pip install -t lib -r requirements.travis.txt --upgrade",
"dev-deps": "python -m pip install --no-deps -r requirements.dev.txt",
"test": "python -m unittest discover -p '*_test.py' -b",
@ -82,4 +82,4 @@
"urijs": ">=1.19.6",
"yargs-parser": ">=13.1.2"
}
}
}