Skip to content

Commit

Permalink
build(deps): Bump postcss-import from 14.1.0 to 15.0.0 in /docs (cosm…
Browse files Browse the repository at this point in the history
…os#13505)

* build(deps): Bump postcss-import from 14.1.0 to 15.0.0 in /docs

Bumps [postcss-import](https://github.com/postcss/postcss-import) from 14.1.0 to 15.0.0.
- [Release notes](https://github.com/postcss/postcss-import/releases)
- [Changelog](https://github.com/postcss/postcss-import/blob/master/CHANGELOG.md)
- [Commits](postcss/postcss-import@14.1.0...15.0.0)

---
updated-dependencies:
- dependency-name: postcss-import
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* improve jobs

* updates

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Julien Robert <julien@rbrt.fr>
  • Loading branch information
dependabot[bot] and julienrbrt committed Oct 11, 2022
1 parent fd25a38 commit 85fe390
Show file tree
Hide file tree
Showing 6 changed files with 53 additions and 27 deletions.
7 changes: 0 additions & 7 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,6 @@ updates:
labels:
- "A:automerge"
- dependencies
- package-ecosystem: gomod
directory: "/db"
schedule:
interval: weekly
labels:
- "A:automerge"
- dependencies
- package-ecosystem: gomod
directory: "/api"
schedule:
Expand Down
12 changes: 7 additions & 5 deletions .github/workflows/build-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,20 @@ name: Build Docs
# This will check if the docs build successfully by running `make build-docs`
on:
pull_request:
types: [labeled]
branches:
- main
- "release/**"
paths:
- "docs/**"
- "x/**/*.md"
- .github/workflows/deploy-docs.yml
- .github/workflows/build-docs.yml

permissions:
contents: read

jobs:
check-docs-build:
if: ${{ contains(github.event.label.name, 'docs') }}

name: Check docs build
runs-on: ubuntu-latest
steps:
Expand All @@ -24,13 +26,13 @@ jobs:
persist-credentials: false
fetch-depth: 0

- name: Use Node.js
- name: Setup Node.js 🔧
uses: actions/setup-node@v3
with:
node-version: "16.x"

# npm install npm should be removed when https://github.com/npm/cli/issues/4942 is fixed
- name: Build docs
- name: Build docs 🔧
run: |
npm install -g npm@8.5.5
make build-docs
2 changes: 1 addition & 1 deletion .github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
fetch-depth: 0
path: "."

- name: Use Node.js
- name: Setup Node.js 🔧
uses: actions/setup-node@v3
with:
node-version: "16.x"
Expand Down
4 changes: 4 additions & 0 deletions docs/docs/building-modules/01-module-manager.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,14 @@ sidebar_position: 1
Cosmos SDK modules need to implement the [`AppModule` interfaces](#application-module-interfaces), in order to be managed by the application's [module manager](#module-manager). The module manager plays an important role in [`message` and `query` routing](../core/00-baseapp.md#routing), and allows application developers to set the order of execution of a variety of functions like [`BeginBlocker` and `EndBlocker`](../basics/00-app-anatomy.md#begingblocker-and-endblocker).
:::

:::note

### Pre-requisite Readings

* [Introduction to Cosmos SDK Modules](./01-intro.md)

:::

## Application Module Interfaces

Application module interfaces exist to facilitate the composition of modules together to form a functional Cosmos SDK application. There are 3 main application module interfaces:
Expand Down
53 changes: 40 additions & 13 deletions docs/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"autoprefixer": "^10.4.12",
"clsx": "^1.2.1",
"postcss": "^8.4.17",
"postcss-import": "^14.1.0",
"postcss-import": "^15.0.0",
"prism-react-renderer": "^1.3.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
Expand Down

0 comments on commit 85fe390

Please sign in to comment.