This commit is contained in:
Mike Cooper 2018-02-23 15:46:24 -08:00
Родитель 00201890aa
Коммит f8fc96d7f0
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 9424CEA6F89AB334
2 изменённых файлов: 14 добавлений и 14 удалений

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

@ -9,27 +9,27 @@ shared:
docker:
- image: circleci/node:9
restore-yarn-cache: &restore-yarn-cache
restore_cache:
key: yarn-cache-{{ checksum "yarn.lock" }}
build: &build
steps:
- checkout
- *restore-yarn-cache
- run:
name: Update NPM
command: 'sudo npm install -g npm@latest'
- restore_cache:
key: dependency-cache-{{ checksum "package.json" }}
- run:
name: NPM Install
command: npm install
name: Yarn Install
command: yarn install --cache-folder ~/.cache/yarn
- save_cache:
key: dependency-cache-{{ checksum "package.json" }}
key: yarn-cache-{{ checksum "yarn.lock" }}
paths:
- ~/.cache/yarn
- node_modules
test: &test
steps:
- checkout
- restore_cache:
key: dependency-cache-{{ checksum "package.json" }}
- *restore-yarn-cache
- run:
name: Test
command: npm run test
@ -37,8 +37,7 @@ shared:
lint: &lint
steps:
- checkout
- restore_cache:
key: dependency-cache-{{ checksum "package.json" }}
- *restore-yarn-cache
- run:
name: Test
command: npm run lint

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

@ -3,9 +3,10 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## [Development]
### Changed
- Format all code with Prettier and ESLint
- Remove Gulp and dist versions
- Format all code with Prettier and ESLint.
- Remove Gulp and dist versions.
- Drop support for old versions of Node. Only Node 8 and 9 are supported.
- Make Yarn the recommended and tested way to install mozjexl.
## [v1.1.6]
### Changed