Skip to content

Commit

Permalink
Added info on workflows
Browse files Browse the repository at this point in the history
Updates on github-actions
  • Loading branch information
AlexRogalskiy committed Aug 13, 2021
1 parent 2d5466e commit eb05eec
Show file tree
Hide file tree
Showing 29 changed files with 178 additions and 26 deletions.
8 changes: 8 additions & 0 deletions .changeset/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Changesets

Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works
with multi-package repos, or single-package repos to help you version and publish your code. You can
find the full documentation for it [in our repository](https://github.com/changesets/changesets)

We have a quick list of common questions to get you started engaging with this project in
[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)
10 changes: 10 additions & 0 deletions .changeset/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"$schema": "https://unpkg.com/@changesets/config@1.6.0/schema.json",
"changelog": "@changesets/cli/changelog",
"commit": false,
"linked": [],
"access": "restricted",
"baseBranch": "master",
"updateInternalDependencies": "patch",
"ignore": []
}
34 changes: 34 additions & 0 deletions .github/actions/pnpm/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# From https://github.com/remirror/template/blob/4f8c5f5629a081217672a8cce1df085510f43913/.github/actions/pnpm/action.yml
name: 'pnpm installation'
description: 'Install and audit dependencies for pnpm'

inputs:
cache: # id of input
description: 'The location of the pnpm cache'
required: true
default: '.pnpm-store'
version: # id of input
description: 'The version to use'
required: false
default: 6.10.0

runs:
using: 'composite'
steps:
- name: install pnpm
run: npm install pnpm@${{ inputs.version }} -g
shell: bash

- name: setup pnpm config
run: pnpm config set store-dir ${{ inputs.cache }}
shell: bash

- name: install dependencies
run: pnpm install
shell: bash

## Usage
# - name: install and audit
# uses: ./.github/actions/pnpm
# with:
# cache: ${{ env.PNPM_CACHE_FOLDER }}
3 changes: 2 additions & 1 deletion .husky/pre-commit
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@
npm run lint:staged
npm run all
npm run changelog
npm run changeset version

git add api/
git add core/

git add **/README.md
git add CHANGELOG.md
git add **/CHANGELOG.md
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## 0.0.2 (2021-08-12)
## 0.0.2 (2021-08-13)


### Features
Expand Down
8 changes: 8 additions & 0 deletions api/alieza/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# @weather-time/alieza

## 1.0.0

### Major Changes

- Initial weather-sprites monorepo release
- Updates on project dependencies
4 changes: 2 additions & 2 deletions api/alieza/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@weather-time/alieza",
"version": "0.0.0",
"version": "1.0.0",
"description": "Styled Weather sprites (Alieza design)",
"license": "GPL-3.0",
"main": "dist/index.js",
Expand Down Expand Up @@ -44,7 +44,7 @@
"all": "npm run format:all && npm run lint:all && npm run pretty && npm run bootstrap"
},
"dependencies": {
"@weather-time/core": "0.0.2",
"@weather-time/core": "^0.0.2",
"env-cmd": "^10.1.0",
"lodash": "^4.17.20"
},
Expand Down
8 changes: 8 additions & 0 deletions api/caillen/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# @weather-time/caillen

## 1.0.0

### Major Changes

- Initial weather-sprites monorepo release
- Updates on project dependencies
4 changes: 2 additions & 2 deletions api/caillen/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@weather-time/caillen",
"version": "0.0.0",
"version": "1.0.0",
"description": "Styled Weather sprites (Caillen design)",
"license": "GPL-3.0",
"main": "dist/index.js",
Expand Down Expand Up @@ -49,7 +49,7 @@
"all": "npm run format:all && npm run lint:all && npm run pretty && npm run bootstrap && npm run build:css"
},
"dependencies": {
"@weather-time/core": "0.0.2",
"@weather-time/core": "^0.0.2",
"env-cmd": "^10.1.0",
"lodash": "^4.17.20",
"rollup": "^2.45.2"
Expand Down
8 changes: 8 additions & 0 deletions api/cenobie/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# @weather-time/cenobie

## 1.0.0

### Major Changes

- Initial weather-sprites monorepo release
- Updates on project dependencies
4 changes: 2 additions & 2 deletions api/cenobie/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@weather-time/cenobie",
"version": "0.0.0",
"version": "1.0.0",
"description": "Styled Weather sprites (Cenobie design)",
"license": "GPL-3.0",
"main": "dist/index.js",
Expand Down Expand Up @@ -49,7 +49,7 @@
"all": "npm run format:all && npm run lint:all && npm run pretty && npm run bootstrap && npm run build:css"
},
"dependencies": {
"@weather-time/core": "0.0.2",
"@weather-time/core": "^0.0.2",
"env-cmd": "^10.1.0",
"lodash": "^4.17.20",
"rollup": "^2.45.2"
Expand Down
8 changes: 8 additions & 0 deletions api/domino/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# @weather-time/domino

## 1.0.0

### Major Changes

- Initial weather-sprites monorepo release
- Updates on project dependencies
4 changes: 2 additions & 2 deletions api/domino/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@weather-time/domino",
"version": "0.0.0",
"version": "1.0.0",
"description": "Styled Weather sprites (Domino design)",
"license": "GPL-3.0",
"main": "dist/index.js",
Expand Down Expand Up @@ -49,7 +49,7 @@
"all": "npm run format:all && npm run lint:all && npm run pretty && npm run bootstrap && npm run build:css"
},
"dependencies": {
"@weather-time/core": "0.0.1",
"@weather-time/core": "^0.0.2",
"env-cmd": "^10.1.0",
"lodash": "^4.17.20",
"rollup": "^2.45.2"
Expand Down
8 changes: 8 additions & 0 deletions api/jaydin/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# @weather-time/jaydin

## 1.0.0

### Major Changes

- Initial weather-sprites monorepo release
- Updates on project dependencies
4 changes: 2 additions & 2 deletions api/jaydin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@weather-time/jaydin",
"version": "0.0.0",
"version": "1.0.0",
"description": "Styled Weather sprites (Jaydin design)",
"license": "GPL-3.0",
"main": "dist/index.js",
Expand Down Expand Up @@ -49,7 +49,7 @@
"all": "npm run format:all && npm run lint:all && npm run pretty && npm run bootstrap && npm run build:css"
},
"dependencies": {
"@weather-time/core": "0.0.2",
"@weather-time/core": "^0.0.2",
"env-cmd": "^10.1.0",
"lodash": "^4.17.20",
"rollup": "^2.45.2"
Expand Down
8 changes: 8 additions & 0 deletions api/kilan/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# @weather-time/kilan

## 1.0.0

### Major Changes

- Initial weather-sprites monorepo release
- Updates on project dependencies
4 changes: 2 additions & 2 deletions api/kilan/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@weather-time/kilan",
"version": "0.0.0",
"version": "1.0.0",
"description": "Styled Weather sprites (Kilan design)",
"license": "GPL-3.0",
"main": "dist/index.js",
Expand Down Expand Up @@ -44,7 +44,7 @@
"all": "npm run format:all && npm run lint:all && npm run pretty && npm run bootstrap"
},
"dependencies": {
"@weather-time/core": "0.0.2",
"@weather-time/core": "^0.0.2",
"env-cmd": "^10.1.0",
"lodash": "^4.17.20"
},
Expand Down
8 changes: 8 additions & 0 deletions api/norene/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# @weather-time/norene

## 1.0.0

### Major Changes

- Initial weather-sprites monorepo release
- Updates on project dependencies
4 changes: 2 additions & 2 deletions api/norene/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@weather-time/norene",
"version": "0.0.0",
"version": "1.0.0",
"description": "Styled Weather sprites (Norene design)",
"license": "GPL-3.0",
"main": "dist/index.js",
Expand Down Expand Up @@ -49,7 +49,7 @@
"all": "npm run format:all && npm run lint:all && npm run pretty && npm run bootstrap && npm run build:css"
},
"dependencies": {
"@weather-time/core": "0.0.2",
"@weather-time/core": "^0.0.2",
"env-cmd": "^10.1.0",
"lodash": "^4.17.20",
"rollup": "^2.45.2"
Expand Down
8 changes: 8 additions & 0 deletions api/ocie/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# @weather-time/ocie

## 1.0.0

### Major Changes

- Initial weather-sprites monorepo release
- Updates on project dependencies
4 changes: 2 additions & 2 deletions api/ocie/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@weather-time/ocie",
"version": "0.0.0",
"version": "1.0.0",
"description": "Styled Weather sprites (Ocie design)",
"license": "GPL-3.0",
"main": "dist/index.js",
Expand Down Expand Up @@ -49,7 +49,7 @@
"all": "npm run format:all && npm run lint:all && npm run pretty && npm run bootstrap && npm run build:css"
},
"dependencies": {
"@weather-time/core": "0.0.2",
"@weather-time/core": "^0.0.2",
"env-cmd": "^10.1.0",
"lodash": "^4.17.20",
"rollup": "^2.45.2"
Expand Down
8 changes: 8 additions & 0 deletions api/shaena/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# @weather-time/shaena

## 1.0.0

### Major Changes

- Initial weather-sprites monorepo release
- Updates on project dependencies
4 changes: 2 additions & 2 deletions api/shaena/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@weather-time/shaena",
"version": "0.0.0",
"version": "1.0.0",
"description": "Styled Weather sprites (Shaena design)",
"license": "GPL-3.0",
"main": "dist/index.js",
Expand Down Expand Up @@ -44,7 +44,7 @@
"all": "npm run format:all && npm run lint:all && npm run pretty && npm run bootstrap"
},
"dependencies": {
"@weather-time/core": "0.0.2",
"@weather-time/core": "^0.0.2",
"env-cmd": "^10.1.0",
"lodash": "^4.17.20"
},
Expand Down
8 changes: 8 additions & 0 deletions api/unity/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# @weather-time/unity

## 1.0.0

### Major Changes

- Initial weather-sprites monorepo release
- Updates on project dependencies
4 changes: 2 additions & 2 deletions api/unity/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@weather-time/unity",
"version": "0.0.0",
"version": "1.0.0",
"description": "Styled Weather sprites (Unity design)",
"license": "GPL-3.0",
"main": "dist/index.js",
Expand Down Expand Up @@ -44,7 +44,7 @@
"all": "npm run format:all && npm run lint:all && npm run pretty && npm run bootstrap"
},
"dependencies": {
"@weather-time/core": "0.0.2",
"@weather-time/core": "^0.0.2",
"env-cmd": "^10.1.0",
"lodash": "^4.17.20"
},
Expand Down
8 changes: 8 additions & 0 deletions api/zylla/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# @weather-time/zylla

## 1.0.0

### Major Changes

- Initial weather-sprites monorepo release
- Updates on project dependencies
4 changes: 2 additions & 2 deletions api/zylla/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@weather-time/zylla",
"version": "0.0.0",
"version": "1.0.0",
"description": "Styled Weather sprites (Zylla design)",
"license": "GPL-3.0",
"main": "dist/index.js",
Expand Down Expand Up @@ -47,7 +47,7 @@
"all": "npm run format:all && npm run lint:all && npm run pretty && npm run bootstrap"
},
"dependencies": {
"@weather-time/core": "0.0.2",
"@weather-time/core": "^0.0.2",
"env-cmd": "^10.1.0",
"lodash": "^4.17.20",
"rollup": "^2.45.2"
Expand Down
3 changes: 2 additions & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,6 @@
"exact": true,
"message": "chore(release): publish"
}
}
},
"ignoreChanges": ["**/CHANGELOG.md", "**/tests/**", "lerna.json", "package.json", "README.md"]
}
Loading

0 comments on commit eb05eec

Please sign in to comment.