Skip to content

Commit

Permalink
chore: Release react-pauseable-containers v0.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
spautz committed Jun 27, 2020
1 parent 7ab83ac commit 32bbbea
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 15 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

# Private Releases

**This library is not yet ready for use. Once it is, v0.1.0 will be the initial release.**

# Private Releases

## 0.0.3 (2020-06-27)

- Initial release for redux-pauseable-store
Expand Down
9 changes: 9 additions & 0 deletions packages/react-pauseable-containers/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Changelog

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## 0.0.3 (2020-06-27)

### Features

- Prototype implementation of react-pauseable-containers
16 changes: 9 additions & 7 deletions packages/react-pauseable-containers/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-pauseable-containers",
"version": "0.0.2",
"version": "0.0.3",
"description": "A react-router Switch which can leave inactive routes mounted-but-inactive until you navigate back",
"keywords": [],
"license": "MIT",
Expand Down Expand Up @@ -29,20 +29,22 @@
"____ BASE COMMANDS _________________________________________________": "",
"build": "microbundle build --jsx React.createElement",
"build:watch": "microbundle watch --jsx React.createElement",
"clean": "rimraf dist/ node_modules/.cache/ && yon test:clean",
"clean": "rimraf dist/ node_modules/.cache/ && yon run test:clean",
"format": "prettier --write \"**/*.*\"",
"format:checkup": "prettier --list-different \"**/*.*\"",
"lint": "eslint \"**/*.{js,jsx,json,ts,tsx}\"",
"release:changelog": "standard-version --skip.commit --skip.tag --release-as ",
"release:tag": "standard-version --sign --skip.changelog --release-as ",
"test": "echo \"@TODO: tests for pauseable-containers\"",
"test:clean": "rimraf coverage-local/",
"test:watch": "echo \"@TODO: tests for pauseable-containers\"",
"types": "tsc --noEmit --p tsconfig.json --jsx react",
"____ HOOKS _________________________________________________________": "",
"prepare": "yon build",
"prebuild": "yon clean",
"prerelease": "yon clean",
"prepublishOnly": "yon checkup && yon build",
"pretest": "yon test:clean",
"prepare": "yon run build",
"prebuild": "yon run clean",
"prerelease": "yon run clean",
"prepublishOnly": "yon run checkup && yon run build",
"pretest": "yon run test:clean",
"____ INTEGRATION ___________________________________________________": "",
"dev": "yon run format && yon run types && yon run lint",
"checkup": "yon format:checkup && yon run types && yon run lint",
Expand Down
12 changes: 6 additions & 6 deletions packages/redux-pauseable-store/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"____ BASE COMMANDS _________________________________________________": "",
"build": "microbundle build --jsx React.createElement",
"build:watch": "microbundle watch --jsx React.createElement",
"clean": "rimraf dist/ node_modules/.cache/ && yon test:clean",
"clean": "rimraf dist/ node_modules/.cache/ && yon run test:clean",
"format": "prettier --write \"**/*.*\"",
"format:checkup": "prettier --list-different \"**/*.*\"",
"lint": "eslint \"**/*.{js,jsx,json,ts,tsx}\"",
Expand All @@ -40,11 +40,11 @@
"test:watch": "jest --coverage --watch",
"types": "tsc --noEmit --p tsconfig.json --jsx react",
"____ HOOKS _________________________________________________________": "",
"prepare": "yon build",
"prebuild": "yon clean",
"prerelease": "yon clean",
"prepublishOnly": "yon checkup && yon build",
"pretest": "yon test:clean",
"prepare": "yon run build",
"prebuild": "yon run clean",
"prerelease": "yon run clean",
"prepublishOnly": "yon run checkup && yon run build",
"pretest": "yon run test:clean",
"____ INTEGRATION ___________________________________________________": "",
"dev": "yon run format && yon run types && yon run lint",
"checkup": "yon format:checkup && yon run types && yon run lint",
Expand Down

0 comments on commit 32bbbea

Please sign in to comment.