From 85fe39077e0e2b79dc62802e9a239420d0e94bae Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 11 Oct 2022 23:08:43 +0200 Subject: [PATCH] build(deps): Bump postcss-import from 14.1.0 to 15.0.0 in /docs (#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](https://github.com/postcss/postcss-import/compare/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] * improve jobs * updates Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Julien Robert --- .github/dependabot.yml | 7 --- .github/workflows/build-docs.yml | 12 +++-- .github/workflows/deploy-docs.yml | 2 +- .../building-modules/01-module-manager.md | 4 ++ docs/package-lock.json | 53 ++++++++++++++----- docs/package.json | 2 +- 6 files changed, 53 insertions(+), 27 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 4a7aa2e38a4e..7e8bef0d5f2c 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -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: diff --git a/.github/workflows/build-docs.yml b/.github/workflows/build-docs.yml index 933c640c3bc9..9a41d52fff84 100644 --- a/.github/workflows/build-docs.yml +++ b/.github/workflows/build-docs.yml @@ -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: @@ -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 diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml index 6ca6ea936780..69abf9b92c92 100644 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -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" diff --git a/docs/docs/building-modules/01-module-manager.md b/docs/docs/building-modules/01-module-manager.md index ecb21e63c4f9..48eb29997992 100644 --- a/docs/docs/building-modules/01-module-manager.md +++ b/docs/docs/building-modules/01-module-manager.md @@ -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: diff --git a/docs/package-lock.json b/docs/package-lock.json index 5d00b87852de..5ed312c8b623 100644 --- a/docs/package-lock.json +++ b/docs/package-lock.json @@ -17,7 +17,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", @@ -8698,16 +8698,16 @@ } }, "node_modules/postcss-import": { - "version": "14.1.0", - "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-14.1.0.tgz", - "integrity": "sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==", + "version": "15.0.0", + "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.0.0.tgz", + "integrity": "sha512-Y20shPQ07RitgBGv2zvkEAu9bqvrD77C9axhj/aA1BQj4czape2MdClCExvB27EwYEJdGgKZBpKanb0t1rK2Kg==", "dependencies": { "postcss-value-parser": "^4.0.0", "read-cache": "^1.0.0", "resolve": "^1.1.7" }, "engines": { - "node": ">=10.0.0" + "node": ">=14.0.0" }, "peerDependencies": { "postcss": "^8.0.0" @@ -11206,6 +11206,22 @@ "node": ">=10.13.0" } }, + "node_modules/tailwindcss/node_modules/postcss-import": { + "version": "14.1.0", + "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-14.1.0.tgz", + "integrity": "sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==", + "dependencies": { + "postcss-value-parser": "^4.0.0", + "read-cache": "^1.0.0", + "resolve": "^1.1.7" + }, + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "postcss": "^8.0.0" + } + }, "node_modules/tapable": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", @@ -11393,9 +11409,9 @@ "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" }, "node_modules/trim": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/trim/-/trim-0.0.1.tgz", - "integrity": "sha512-YzQV+TZg4AxpKxaTHK3c3D+kRDCGVEE7LemdlQZoQXn0iennk10RsIoY6ikzAqJTc9Xjl9C1/waHom/J86ziAQ==" + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/trim/-/trim-0.0.3.tgz", + "integrity": "sha512-h82ywcYhHK7veeelXrCScdH7HkWfbIT1D/CgYO+nmDarz3SGNssVBMws6jU16Ga60AJCRAvPV6w6RLuNerQqjg==" }, "node_modules/trim-trailing-lines": { "version": "1.1.4", @@ -18990,9 +19006,9 @@ } }, "postcss-import": { - "version": "14.1.0", - "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-14.1.0.tgz", - "integrity": "sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==", + "version": "15.0.0", + "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.0.0.tgz", + "integrity": "sha512-Y20shPQ07RitgBGv2zvkEAu9bqvrD77C9axhj/aA1BQj4czape2MdClCExvB27EwYEJdGgKZBpKanb0t1rK2Kg==", "requires": { "postcss-value-parser": "^4.0.0", "read-cache": "^1.0.0", @@ -20789,6 +20805,16 @@ "requires": { "is-glob": "^4.0.3" } + }, + "postcss-import": { + "version": "14.1.0", + "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-14.1.0.tgz", + "integrity": "sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==", + "requires": { + "postcss-value-parser": "^4.0.0", + "read-cache": "^1.0.0", + "resolve": "^1.1.7" + } } } }, @@ -20916,8 +20942,9 @@ "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" }, "trim": { - "version": "https://registry.npmjs.org/trim/-/trim-0.0.1.tgz", - "integrity": "sha512-YzQV+TZg4AxpKxaTHK3c3D+kRDCGVEE7LemdlQZoQXn0iennk10RsIoY6ikzAqJTc9Xjl9C1/waHom/J86ziAQ==" + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/trim/-/trim-0.0.3.tgz", + "integrity": "sha512-h82ywcYhHK7veeelXrCScdH7HkWfbIT1D/CgYO+nmDarz3SGNssVBMws6jU16Ga60AJCRAvPV6w6RLuNerQqjg==" }, "trim-trailing-lines": { "version": "1.1.4", diff --git a/docs/package.json b/docs/package.json index 21938ca30aa2..413abd4101a0 100644 --- a/docs/package.json +++ b/docs/package.json @@ -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",