Contented is a Markdown-based authoring workflow that encourage developer authoring within its contextual Git repository.

Overview

Contented is a Markdown-based authoring workflow that encourage developer authoring within its contextual Git repository. npm i @birthdayresearch/contented

With a headless design of 2 config files package.json & contented.js, developers can start writing their markdown content and preview it on their localhost contented write. Choosing convention over configuration reduces HTML/UI clutter, allowing developers to focus on authoring.

Authored content can be continuously delivered (CD) into a hosted static site (e.g., GitHub Pages/Netlify/Vercel) for preview contented generate. As code drift, so does documentation; this allows each pull request to have an accompanying sharable preview of the documentation. With CD, it effectively shift-left your documentation workflow and checks it is compilable and presentable.

By encouraging authoring next to the source (in the same git repo), developers can contextually document changes as they develop. All domain-specific changes will go into the main branch with one Git Pull Request.

With contented build, you can compile your markdown into sources index.js & *.json with *.d.ts that output into ./dist. npm publish them into any registry of your choice, for you can easily npm i @your-scope/your-npm-package and use the processed content on any of your downstream sites. Easily pulling up-to-date content and prose from individual domain-specific repositories and re-presented. Think microservices, but for your prose!

Motivation

If you don’t make it easy to get something done (authoring), nobody will go out of their way to get it done perfectly every time. Turn it into a GitOps workflow and give people the necessary tools and power to get it done perfectly every single time — everyone will get it done, as now there is no other way else to get it done. An efficient workflow naturally satisfies.

Just Another SSG?

This is not a static site generator. This is a markdown processor workflow with a built-in static site generator. The outcome we're trying to achieve is this @birthdayresearch/contented-example/dist

Powered By

  • Next, Tailwind for contented write and contented generate
  • Contentlayer with a collection of Unified Plugin for MD processing for contented build
  • And hacking around by spawning node:child_process so you just need 2 configuration files.

Getting Started

repo/
├─ packages/**          <- Project Tree
├─ docs/                <- Documentation Tree (standalone)
│  ├─ 01:Title 1/*.md
│  ├─ 02:Title 2/*.md
│  ├─ 03:Title 3/
│  │  ├─ 01:Subtitle 1/*.md
│  │  ├─ 02:overview.md
│  │  └─ 03:faq.md
│  ├─ contented.js
│  └─ package.json
├─ package.json
└─ README.md

package.json

{
  "name": "@birthdayresearch/contented-example",
  "version": "0.0.0",
  "private": false,
  "files": ["dist"],
  "main": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "scripts": {
    "write": "contented write",
    "generate": "contented generate",
    "build": "contented build"
  },
  "devDependencies": {
    "@birthdayresearch/contented": "0.0.0"
  },
  "contented": {
    "url": "https://contented.dev",
    "name": "Contented",
    "github": {
      "url": "https://github.com/BirthdayResearch/contented"
    }
  }
}

contented.js

const Doc = {
  name: 'Doc',
  filePathPattern: `**/*.md`,
  fields: {
    title: {
      type: 'string',
      description: 'The title of the documentation.',
      required: true,
      default: 'Contented',
    },
    description: {
      type: 'string',
      required: false,
    },
    tags: {
      type: 'list',
      of: { type: 'string' },
      default: [],
      required: false,
    },
  },
};

export default {
  rootDir: 'docs',
  types: [Doc],
};

Examples

Comments
  • (feat): Markdown table processor support

    (feat): Markdown table processor support

    What would you like to be added:

    As per title.

    Why is this needed:

    Useful feature to have since some data is better represented in a tabular form. For example, a glossary, schema, etc.

    kind/feature needs/triage area/contented-processor 
    opened by weiyuan95 5
  • feat(contented-pipeline-jest-md): new JestMarkdownPipeline for jest files

    feat(contented-pipeline-jest-md): new JestMarkdownPipeline for jest files

    What this PR does / why we need it:

    Added new JestMarkdownPipeline with alias jest-md for processing jest files.

    JestMarkdown.spec.ts becomes /jest/pipelines/jest-markdown

    Prior Art:

    • https://github.com/JellyfishSDK/jellyfish/pull/1104
    • https://github.com/JellyfishSDK/jellyfish/issues/967
    kind/feature area/contented-example area/contented-processor 
    opened by fuxingloh 4
  • bump(deps): update dependency typescript to v4.9.4

    bump(deps): update dependency typescript to v4.9.4

    Mend Renovate

    This PR contains the following updates:

    | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | typescript (source) | 4.8.4 -> 4.9.4 | age | adoption | passing | confidence |


    Release Notes

    Microsoft/TypeScript

    v4.9.4: TypeScript 4.9.4

    Compare Source

    For release notes, check out the release announcement.

    For the complete list of fixed issues, check out the

    Downloads are available on:

    Changes:

    This list of changes was auto generated.

    v4.9.3: TypeScript 4.9

    Compare Source

    For release notes, check out the release announcement.

    Downloads are available on:

    Changes:

    See More

    This list of changes was auto generated.


    Configuration

    📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

    🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

    Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

    🔕 Ignore: Close this PR and you won't be reminded about these updates again.


    • [ ] If you want to rebase/retry this PR, check this box

    This PR has been generated by Mend Renovate. View repository job log here.

    kind/dependencies area/contented-processor area/contented 
    opened by renovate[bot] 3
  • bump(deps): update dependency next to v12.3.4

    bump(deps): update dependency next to v12.3.4

    Mend Renovate

    This PR contains the following updates:

    | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | next (source) | 12.3.0 -> 12.3.4 | age | adoption | passing | confidence |


    Release Notes

    vercel/next.js

    v12.3.4

    Compare Source

    v12.3.3

    Compare Source

    v12.3.2

    Compare Source

    v12.3.1

    Compare Source

    Core Changes
    • Update react-server-dom-webpack: #​40356
    • Fix flight manifest to include all chunks: #​40365
    • docs: fix typos: #​40342
    • Fix page url for edge routes in app dir: #​40361
    • Subresource Integrity for App Directory: #​39729
    • Stop build warning about experimental: { esmExternals: 'loose' }: #​40377
    • Add template and error file types: #​39808
    • Bump styled-jsx for showing displayName: #​40411
    • fix(#​40388): next/dynamic should only add default loading without suspense: #​40397
    • Add missing trace for full reload event: #​40393
    • feat(ts): expose AppType: #​40391
    • Update dev watcher to ignore more accurately: #​40412
    • Add failing case for location throw: #​40445
    • Drop legacy RSC handling in client for pages: #​40472
    • fix: eslint no-script-component-in-head error url: #​40422
    • chore: Update swc: #​40292
    • feat(edge): allows configuring Dynamic code execution guard: #​39539
    • Rename allowDynamic to unstable_allowDynamic: #​40496
    • Don't execute prefetches for bot user agents: #​40435
    • Update semver of eslint-plugin-react: #​40246
    • Clean up startTransition in Link: #​40505
    • docs(README): next.js logo with dark mode: #​40223
    • Passing down original sourcemap for flight client loader: #​40508
    • next/script: make onLoad concurrent rendering resilient: #​40191
    • chore: Update swc: #​40520
    • Add missing feature in next-swc: #​40550
    • Mask Flight Parameters from Middleware: #​39939
    • Unwrap promise with experimental_use: #​40575
    • fix(next/router): Prevent query delete in routing when next.config basePath option is truthy: #​40566
    • fix(image): handle image imports with high aspect ratio: #​40563
    • fix: loosen webpack compilation with fallbackNodePolyfills: false: #​40612
    • Adding experimentalAdjustFallback feature to font optimization: #​40185
    • fix: handle notFound: true in / with next export: #​40592
    • refactor: split up CONTRIBUTING.md: #​40515
    • Implement SWC transformer for server and client graphs: #​40603
    • Fix edge wasm handling during deploy: #​40625
    • Client directive: #​40415
    • Remove internal client next api detection: #​40646
    • Attach module trace for RSC related errors: #​40652
    • Use createFromFetch instead of createFromReadableStream to fetch Flight: #​40656
    • Change Flight response content type to application/octet-stream: #​40665
    • Send web vitals to Vercel analytics in app: #​40669
    • Refactor fetchServerResponse: #​40674
    • Port page and layout level API assertions to SWC transform: #​40653
    • Ensure smooth scroll is disabled for navigation in new and existing router: #​40642
    • Upgrade to latest React experimental: #​40672
    • Refine error messages: #​40661
    • Incldue styled-jsx in swc compiling: #​40679
    • misc: update caniuse-lite to latest: #​40680
    • Remove non existed exports and files: #​40685
    • fix(image): preload should respect crossOrigin: #​40676
    • Add handling for static generation in app: #​40561
    • Avoid direct React client API imports in the server graph: #​40686
    • Drop legacy RSC server and client extension: #​40692
    Documentation Changes
    • docs: fix middleware path: #​40340
    • Fix mdx docs: #​40402
    • Update Server Components documentation.: #​40452
    • docs: move swcMinify: true out of "Experimental features" section: #​40394
    • Clarify use of loading property: #​40488
    • docs(errors/large-page-data): how to see data being passed to page: #​40491
    • docs(basic-features/script): update script version history: #​40263
    • Added "negative matcher" documentation: #​40282
    • Fix a typo in docs: #​40501
    Example Changes
    • chore: fix examples: #​40395
    • chore(examples): update turborepo examples link: #​40487
    • update(examples): Emotion modules: #​40242
    • Added comments to middleware-matcher example: #​40273
    • Remove legacy mobx example: #​40304
    • Update cms-makeswift example: #​40560
    • Fixed typo: #​40608
    • Revert "Fixed typo": #​40623
    • chore: Migrate with-prefetching example to typescript: #​40671
    • chore: Refactor active-class-name example: #​40670
    • docs(examples): fix error connection handling: #​40633
    Misc Changes
    • Temporarily disable unstable app test: #​40408
    • docs(middleware): fix broken link
    • chore: use link: instead of file: in CONTRIBUTING.md: #​40510
    • add Balázs as codeowner to /errors/ directory
    • fix(cli): tune filter for extracting example .tar: #​40513
    • Add additional tests for prefetch and trailingSlash: #​40517
    • Wrap parallel routes tests in describe: #​40546
    • fix(#​40025): run next/script beforeInteractive test in both dev & prod: #​40541
    Credits

    Huge thanks to @​huozhi, @​shuding, @​ijjk, @​jasham, @​Kikobeats, @​wyattjoh, @​rubytree33, @​timneutkens, @​balazsorban44, @​andrewrjohn, @​SukkaW, @​hanneslund, @​leerob, @​Djo1e, @​kdy1, @​msafi, @​tknickman, @​feugy, @​cramforce, @​ryparker, @​victorboucher, @​steven-tey, @​JDansercoer, @​janklimo, @​hiro0218, @​HaNdTriX, @​migueloller, @​flex-kyunghwa, @​saalimzafar, @​alxhotel, @​janicklas-ralph, @​feedthejim, and @​chornos13 for helping!


    Configuration

    📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

    🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

    Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

    🔕 Ignore: Close this PR and you won't be reminded about this update again.


    • [ ] If you want to rebase/retry this PR, check this box

    This PR has been generated by Mend Renovate. View repository job log here.

    kind/dependencies area/contented-preview 
    opened by renovate[bot] 3
  • bump(deps): update dependency @leafac/html to v3.0.3

    bump(deps): update dependency @leafac/html to v3.0.3

    Mend Renovate

    This PR contains the following updates:

    | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | @leafac/html | 3.0.2 -> 3.0.3 | age | adoption | passing | confidence |


    Release Notes

    leafac/html

    v3.0.3

    Compare Source


    Configuration

    📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

    🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

    Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

    🔕 Ignore: Close this PR and you won't be reminded about this update again.


    • [ ] If you want to rebase/retry this PR, check this box

    This PR has been generated by Mend Renovate. View repository job log here.

    kind/dependencies 
    opened by renovate[bot] 3
  • bump(deps): update dependency typescript to v4.9.4

    bump(deps): update dependency typescript to v4.9.4

    Mend Renovate

    This PR contains the following updates:

    | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | typescript (source) | 4.8.4 -> 4.9.4 | age | adoption | passing | confidence |


    Release Notes

    Microsoft/TypeScript

    v4.9.4: TypeScript 4.9.4

    Compare Source

    For release notes, check out the release announcement.

    For the complete list of fixed issues, check out the

    Downloads are available on:

    Changes:

    This list of changes was auto generated.

    v4.9.3: TypeScript 4.9

    Compare Source

    For release notes, check out the release announcement.

    Downloads are available on:

    Changes:

    See More

    This list of changes was auto generated.


    Configuration

    📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

    🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

    Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

    🔕 Ignore: Close this PR and you won't be reminded about these updates again.


    • [ ] If you want to rebase/retry this PR, check this box

    This PR has been generated by Mend Renovate. View repository job log here.

    kind/dependencies area/contented-processor area/contented 
    opened by renovate[bot] 3
  • bump(deps): update @birthdayresearch/sticky to v0.3.2

    bump(deps): update @birthdayresearch/sticky to v0.3.2

    Mend Renovate

    This PR contains the following updates:

    | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | @​birthdayresearch/eslint-config | 0.2.0 -> 0.3.2 | age | adoption | passing | confidence | | @​birthdayresearch/sticky-jest | 0.2.0 -> 0.3.2 | age | adoption | passing | confidence | | @​birthdayresearch/sticky-prettier | 0.2.0 -> 0.3.2 | age | adoption | passing | confidence |


    Configuration

    📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

    🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

    Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

    🔕 Ignore: Close this PR and you won't be reminded about these updates again.


    • [ ] If you want to rebase/retry this PR, check this box

    This PR has been generated by Mend Renovate. View repository job log here.

    kind/dependencies area/contented-processor area/contented area/jest-preset 
    opened by renovate[bot] 3
  • bump(deps): update dependency next to v12.3.4

    bump(deps): update dependency next to v12.3.4

    Mend Renovate

    This PR contains the following updates:

    | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | next (source) | 12.3.0 -> 12.3.4 | age | adoption | passing | confidence |


    Release Notes

    vercel/next.js

    v12.3.4

    Compare Source


    Configuration

    📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

    🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

    Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

    🔕 Ignore: Close this PR and you won't be reminded about this update again.


    • [ ] If you want to rebase/retry this PR, check this box

    This PR has been generated by Mend Renovate. View repository job log here.

    kind/dependencies area/contented-preview 
    opened by renovate[bot] 3
  • bump(deps): update @birthdayresearch/sticky to v0.3.0

    bump(deps): update @birthdayresearch/sticky to v0.3.0

    Mend Renovate

    This PR contains the following updates:

    | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | @​birthdayresearch/eslint-config | 0.2.0 -> 0.3.0 | age | adoption | passing | confidence | | @​birthdayresearch/sticky-jest | 0.2.0 -> 0.3.0 | age | adoption | passing | confidence | | @​birthdayresearch/sticky-prettier | 0.2.0 -> 0.3.0 | age | adoption | passing | confidence |


    Configuration

    📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

    🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

    Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

    🔕 Ignore: Close this PR and you won't be reminded about these updates again.


    • [ ] If you want to rebase/retry this PR, check this box

    This PR has been generated by Mend Renovate. View repository job log here.

    kind/dependencies area/jest-preset 
    opened by renovate[bot] 3
  • bump(deps): bump actions/github-script from 6.3.1 to 6.3.2

    bump(deps): bump actions/github-script from 6.3.1 to 6.3.2

    Bumps actions/github-script from 6.3.1 to 6.3.2.

    Release notes

    Sourced from actions/github-script's releases.

    v6.3.2

    What's Changed

    New Contributors

    Full Changelog: https://github.com/actions/github-script/compare/v6.3.1...v6.3.2

    Commits
    • 1005277 Merge pull request #299 from actions/joshmgross/v6.3.2
    • 085a775 Bump version to 6.3.2
    • 6871f0f Merge pull request #295 from rentziass/rentziass/update-actions-core
    • 7ed7182 Update @​actions/core to 1.10.0
    • See full diff in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    kind/dependencies area/workflow 
    opened by dependabot[bot] 3
  • bump(deps): update dependency typescript to v4.8.3

    bump(deps): update dependency typescript to v4.8.3

    Mend Renovate

    This PR contains the following updates:

    | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | typescript (source) | 4.7.4 -> 4.8.3 | age | adoption | passing | confidence |


    Release Notes

    Microsoft/TypeScript

    v4.8.3

    Compare Source

    For release notes, check out the release announcement.

    For the complete list of fixed issues, check out the

    Downloads are available on:

    v4.8.2

    Compare Source

    For release notes, check out the release announcement.

    For the complete list of fixed issues, check out the

    Downloads are available on:


    Configuration

    📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

    🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

    Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

    🔕 Ignore: Close this PR and you won't be reminded about these updates again.


    • [ ] If you want to rebase/retry this PR, click this checkbox.

    This PR has been generated by Mend Renovate. View repository job log here.

    kind/dependencies area/contented-processor area/contented 
    opened by renovate[bot] 3
  • Header with link in it does not render properly

    Header with link in it does not render properly

    What happened:

    When doing something like:

    ## [A header that's a link](./something.md)
    

    The header does not render on contented write.

    If however you do a combination of links and text in the header like so:

    ## Half a [header](something.md)
    

    The text half render correctly, but the link will only appear on hover.

    What you expected to happen:

    The heading to render as expected, with the link shown in header style if possible.

    How to reproduce it (as minimally and precisely as possible):

    https://github.com/cwkang1998/contented-bug-linked-heading

    Anything else we need to know?:

    needs/area kind/bug needs/triage 
    opened by cwkang1998 3
  • bump(deps): update dependency esbuild to ^0.16.16

    bump(deps): update dependency esbuild to ^0.16.16

    Mend Renovate

    This PR contains the following updates:

    | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | esbuild | ^0.16.14 -> ^0.16.16 | age | adoption | passing | confidence |


    Release Notes

    evanw/esbuild

    v0.16.16

    Compare Source

    • Fix a regression caused by comment preservation (#​2805)

      The new comment preservation behavior that was added in 0.16.14 introduced a regression where comments in certain locations could cause esbuild to omit certain necessary parentheses in the output. The outermost parentheses were incorrectly removed for the following syntax forms, which then introduced syntax errors:

      (/* comment */ { x: 0 }).x;
      (/* comment */ function () { })();
      (/* comment */ class { }).prototype;
      

      This regression has been fixed.

    v0.16.15

    Compare Source

    • Add format to input files in the JSON metafile data

      When --metafile is enabled, input files may now have an additional format field that indicates the export format used by this file. When present, the value will either be cjs for CommonJS-style exports or esm for ESM-style exports. This can be useful in bundle analysis.

      For example, esbuild's new Bundle Size Analyzer now uses this information to visualize whether ESM or CommonJS was used for each directory and file of source code (click on the CJS/ESM bar at the top).

      This information is helpful when trying to reduce the size of your bundle. Using the ESM variant of a dependency instead of the CommonJS variant always results in a faster and smaller bundle because it omits CommonJS wrappers, and also may result in better tree-shaking as it allows esbuild to perform tree-shaking at the statement level instead of the module level.

    • Fix a bundling edge case with dynamic import (#​2793)

      This release fixes a bug where esbuild's bundler could produce incorrect output. The problematic edge case involves the entry point importing itself using a dynamic import() expression in an imported file, like this:

      // src/a.js
      export const A = 42;
      
      // src/b.js
      export const B = async () => (await import(".")).A
      
      // src/index.js
      export * from "./a"
      export * from "./b"
      
    • Remove new type syntax from type declarations in the esbuild package (#​2798)

      Previously you needed to use TypeScript 4.3 or newer when using the esbuild package from TypeScript code due to the use of a getter in an interface in node_modules/esbuild/lib/main.d.ts. This release removes this newer syntax to allow people with versions of TypeScript as far back as TypeScript 3.5 to use this latest version of the esbuild package. Here is change that was made to esbuild's type declarations:

       export interface OutputFile {
         /** "text" as bytes */
         contents: Uint8Array;
         /** "contents" as text (changes automatically with "contents") */
      -  get text(): string;
      +  readonly text: string;
       }
      

    Configuration

    📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

    🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

    Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

    🔕 Ignore: Close this PR and you won't be reminded about this update again.


    • [ ] If you want to rebase/retry this PR, check this box

    This PR has been generated by Mend Renovate. View repository job log here.

    kind/dependencies area/jest-preset 
    opened by renovate[bot] 2
  • bump(deps): update dependency postcss to v8.4.21

    bump(deps): update dependency postcss to v8.4.21

    Mend Renovate

    This PR contains the following updates:

    | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | postcss (source) | 8.4.20 -> 8.4.21 | age | adoption | passing | confidence |


    Release Notes

    postcss/postcss

    v8.4.21

    Compare Source

    • Fixed Input#error types (by Aleks Hudochenkov).

    Configuration

    📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

    🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

    Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

    🔕 Ignore: Close this PR and you won't be reminded about this update again.


    • [ ] If you want to rebase/retry this PR, check this box

    This PR has been generated by Mend Renovate. View repository job log here.

    kind/dependencies area/contented-preview 
    opened by renovate[bot] 2
  • bump(deps): bump actions/setup-node from 3.5.1 to 3.6.0

    bump(deps): bump actions/setup-node from 3.5.1 to 3.6.0

    Bumps actions/setup-node from 3.5.1 to 3.6.0.

    Release notes

    Sourced from actions/setup-node's releases.

    Add Support for Nightly, Canary and RC builds for Node.js

    In scope of this release we added support to download nightly, rc (actions/setup-node#611) and canary (actions/setup-node#619) Node.js distributions.

    For nightly versions:

    jobs:
      build:
        runs-on: ubuntu-latest
        name: Node sample
        steps:
          - uses: actions/checkout@v3
          - uses: actions/setup-node@v3
            with:
              node-version: '16-nightly'
          - run: npm ci
          - run: npm test
    

    For canary versions:

    jobs:
      build:
        runs-on: ubuntu-latest
        name: Node sample
        steps:
          - uses: actions/checkout@v3
          - uses: actions/setup-node@v3
            with:
              node-version: '16-v8-canary’
          - run: npm ci
          - run: npm test
    

    For rc versions:

    jobs:
      build:
        runs-on: ubuntu-latest
        name: Node sample
        steps:
          - uses: actions/checkout@v3
          - uses: actions/setup-node@v3
            with:
              node-version: '16.0.0-rc.1’
          - run: npm ci
          - run: npm test
    

    ... (truncated)

    Commits

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    kind/dependencies area/workflow 
    opened by dependabot[bot] 2
  • bump(deps): bump actions/checkout from 3.2.0 to 3.3.0

    bump(deps): bump actions/checkout from 3.2.0 to 3.3.0

    Bumps actions/checkout from 3.2.0 to 3.3.0.

    Release notes

    Sourced from actions/checkout's releases.

    v3.3.0

    What's Changed

    New Contributors

    Full Changelog: https://github.com/actions/checkout/compare/v3.2.0...v3.3.0

    Commits

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    kind/dependencies area/workflow 
    opened by dependabot[bot] 2
  • bump(deps): update dependency lerna to ^6.4.0

    bump(deps): update dependency lerna to ^6.4.0

    Mend Renovate

    This PR contains the following updates:

    | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | lerna (source) | ^6.3.0 -> ^6.4.0 | age | adoption | passing | confidence |


    Release Notes

    lerna/lerna

    v6.4.0

    Compare Source

    Features

    Configuration

    📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

    🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

    Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

    🔕 Ignore: Close this PR and you won't be reminded about this update again.


    • [ ] If you want to rebase/retry this PR, check this box

    This PR has been generated by Mend Renovate. View repository job log here.

    kind/dependencies 
    opened by renovate[bot] 2
Releases(v1.8.6)
  • v1.8.6(Jan 3, 2023)

  • v1.8.5(Jan 2, 2023)

    Fixes

    • fix(contented-preview): next 13 <a> within <Link> deprecated @fuxingloh (#296)

    Dependencies

    • bump(deps): update dependency @types/node to ^16.18.11 @renovate (#293)
    • bump(deps): update dependency lerna to ^6.3.0 @renovate (#294)
    • bump(deps): update dependency esbuild to ^0.16.12 @renovate (#295)
    Source code(tar.gz)
    Source code(zip)
  • v1.8.4(Dec 26, 2022)

    Dependencies

    • bump(deps): update dependency next-sitemap to v3.1.43 @renovate (#289)
    • bump(deps): update babel monorepo to ^7.20.7 @renovate (#292)
    • bump(deps): update dependency minimatch to ^5.1.2 @renovate (#291)
    • bump(deps): update dependency next to v13 @renovate (#278)
    • bump(deps): update dependency esbuild to ^0.16.10 @renovate (#290)
    • bump(deps): update dependency esbuild to ^0.16.9 @renovate (#284)
    • bump(deps): update dependency @types/node to ^16.18.10 @renovate (#283)
    • bump(deps): update dependency @headlessui/react to v1.7.7 @renovate (#281)
    • bump(deps): update dependency mermaid to v9.3.0 @renovate (#280)
    • bump(deps): update dependency next-sitemap to v3.1.42 @renovate (#279)
    • bump(deps): bump fuxingloh/multi-labeler from 2.0.1 to 2.0.2 @dependabot (#282)
    Source code(tar.gz)
    Source code(zip)
  • v1.8.3(Dec 15, 2022)

    Chore & Maintenance

    • chore(pipeline): improve Pipeline.prefix path capturing @fuxingloh (#274)

    Dependencies

    • bump(deps): update dependency minimatch to ^5.1.1 @renovate (#276)
    • bump(deps): update @birthdayresearch/sticky to v0.3.2 @renovate (#266)
    • bump(deps): update dependency esbuild to ^0.16.7 @renovate (#269)
    • bump(deps): update dependency @headlessui/react to v1.7.5 @renovate (#271)
    • bump(deps): update dependency postcss to v8.4.20 @renovate (#272)
    • bump(deps): update dependency @types/node to ^16.18.9 @renovate (#268)
    • bump(deps): bump actions/checkout from 3.1.0 to 3.2.0 @dependabot (#273)
    Source code(tar.gz)
    Source code(zip)
  • v1.8.2(Dec 5, 2022)

    Chore & Maintenance

    • chore(contented-preview): sections join ' / ' instead of '/' for better ux @fuxingloh (#267)

    Dependencies

    • bump(deps): update dependency esbuild to ^0.15.18 @renovate (#265)
    Source code(tar.gz)
    Source code(zip)
  • v1.8.1(Dec 5, 2022)

    Features

    • feat(contented): support for mono-repo docs authoring and publishing @fuxingloh (#263)

    Chore & Maintenance

    • chore(contented-preview): navigation ux improvement @fuxingloh (#261)
    • chore(contented-pipeline): add additional prefix [00] for path @fuxingloh (#260)
    • chore(workflow): add missing packages to lerna @fuxingloh (#264)

    Dependencies

    • bump(deps): update dependency esbuild to ^0.15.17 @renovate (#262)
    • bump(deps): update dependency lerna to ^6.1.0 @renovate (#258)
    • bump(deps): update dependency esbuild to ^0.15.16 @renovate (#256)
    • bump(deps): update babel monorepo to ^7.20.5 @renovate (#257)
    • bump(deps): update dependency @types/node to ^16.18.4 @renovate (#259)
    • bump(deps): update dependency postcss to v8.4.19 @renovate (#247)
    Source code(tar.gz)
    Source code(zip)
  • v1.8.0(Dec 5, 2022)

    Features

    • feat(contented): support for mono-repo docs authoring and publishing @fuxingloh (#263)

    Chore & Maintenance

    • chore(contented-preview): navigation ux improvement @fuxingloh (#261)
    • chore(contented-pipeline): add additional prefix [00] for path @fuxingloh (#260)

    Dependencies

    • bump(deps): update dependency esbuild to ^0.15.17 @renovate (#262)
    • bump(deps): update dependency lerna to ^6.1.0 @renovate (#258)
    • bump(deps): update dependency esbuild to ^0.15.16 @renovate (#256)
    • bump(deps): update babel monorepo to ^7.20.5 @renovate (#257)
    • bump(deps): update dependency @types/node to ^16.18.4 @renovate (#259)
    • bump(deps): update dependency postcss to v8.4.19 @renovate (#247)
    Source code(tar.gz)
    Source code(zip)
  • v1.7.3(Nov 26, 2022)

    Chore & Maintenance

    • chore(contented-pipeline): add additional prefix (00) instead of :00: with ^(:\d+:|\(\d+\)) @fuxingloh (#255)

    Dependencies

    • bump(deps): update dependency tailwindcss to v3.2.4 @renovate (#248)
    • bump(deps): update dependency next-sitemap to v3.1.32 @renovate (#249)
    • bump(deps): update dependency esbuild to ^0.15.15 @renovate (#250)
    • bump(deps): update babel monorepo @renovate (#234)
    • bump(deps): update dependency clipanion to v3.2.0-rc.14 @renovate (#252)
    • bump(deps): update dependency vfile to ^5.3.6 @renovate (#253)
    • bump(deps): update dependency mermaid to v9.2.2 @renovate (#235)
    • bump(deps): update dependency tailwindcss to v3.2.3 @renovate (#246)
    Source code(tar.gz)
    Source code(zip)
  • v1.7.2(Nov 10, 2022)

    Fixes

    • fix(contented-preview): fix mermaid graph to refresh when theme refresh @fuxingloh (#244)

    Chore & Maintenance

    • chore(bumps): rollback to next 12.3.0 @fuxingloh (#245)

    Dependencies

    • bump(deps): update dependency next to v12.3.3 @renovate (#243)
    • bump(deps): update dependency @headlessui/react to v1.7.4 @renovate (#239)
    • bump(deps): update dependency lerna to ^6.0.3 @renovate (#242)
    • bump(deps): update dependency tailwindcss to v3.2.2 @renovate (#240)
    • bump(deps): update dependency @parcel/watcher to ^2.0.7 @renovate (#236)
    • bump(deps): update dependency @heroicons/react to v2.0.13 @renovate (#237)
    • bump(deps): update dependency esbuild to ^0.15.13 @renovate (#238)
    • bump(deps): update dependency @tailwindcss/typography to v0.5.8 @renovate (#241)
    • bump(deps): update dependency turbo to ^1.6.3 @renovate (#233)
    • bump(deps): update dependency next-sitemap to v3.1.30 @renovate (#232)
    • bump(deps): update dependency rehype-slug to ^5.1.0 @renovate (#231)
    • bump(deps): update babel monorepo to ^7.20.0 @renovate (#227)
    • bump(deps): update dependency @types/node to ^16.18.3 @renovate (#220)
    • bump(deps): update dependency autoprefixer to v10.4.13 @renovate (#228)
    • bump(deps): update dependency turbo to ^1.6.2 @renovate (#229)
    • bump(deps): update dependency next to v12.3.2 @renovate (#230)
    • bump(deps): update dependency tailwindcss to v3.2.1 @renovate (#224)
    • bump(deps): update dependency esbuild to ^0.15.12 @renovate (#223)
    • bump(deps): update dependency next-sitemap to v3.1.29 @renovate (#221)
    • bump(deps): update dependency clipanion to v3.2.0-rc.13 @renovate (#222)
    • bump(deps): update babel monorepo to ^7.19.6 @renovate (#225)
    • bump(deps): Bump release-drafter/release-drafter from 5.21.0 to 5.21.1 @dependabot (#219)
    • bump(deps): Bump fuxingloh/multi-labeler from 2.0.0 to 2.0.1 @dependabot (#218)
    • bump(deps): update dependency turbo to ^1.6.1 @renovate (#226)
    Source code(tar.gz)
    Source code(zip)
  • v1.7.1(Oct 18, 2022)

    Chore & Maintenance

    • chore(workflows): remove BIRTHDAYRESEARCH_BOT_GITHUB_TOKEN @fuxingloh (#214)

    Dependencies

    • bump(deps): update dependency lerna to v6 @renovate (#217)
    • bump(deps): update dependency ignore-walk to v6 @renovate (#216)
    • bump(deps): update dependency postcss to v8.4.18 @renovate (#209)
    • bump(deps): update dependency lerna to ^5.6.2 @renovate (#204)
    • bump(deps): update dependency @types/node to ^16.11.66 @renovate (#207)
    • bump(deps): bump actions/setup-node from 3.5.0 to 3.5.1 @dependabot (#211)
    • bump(deps): bump actions/github-script from 6.3.1 to 6.3.3 @dependabot (#212)
    • bump(deps): update dependency next-sitemap to v3.1.28 @renovate (#210)
    • bump(deps): update dependency esbuild to ^0.15.11 @renovate (#213)
    • bump(deps): update babel monorepo @renovate (#206)
    • bump(deps): update dependency next-sitemap to v3.1.24 @renovate (#205)
    • bump(deps): update dependency turbo to ^1.5.6 @renovate (#197)
    • bump(deps): update dependency @sindresorhus/slugify to ^2.1.1 @renovate (#202)
    • bump(deps): update dependency @heroicons/react to v2.0.12 @renovate (#203)
    • bump(deps): update dependency @types/node to ^16.11.64 @renovate (#188)
    • bump(deps): bump actions/github-script from 6.3.0 to 6.3.1 @dependabot (#200)
    • bump(deps): bump actions/checkout from 3.0.2 to 3.1.0 @dependabot (#201)
    • bump(deps): update dependency postcss to v8.4.17 @renovate (#198)
    • bump(deps): update dependency esbuild to ^0.15.10 @renovate (#196)
    • bump(deps): update dependency @headlessui/react to v1.7.3 @renovate (#199)
    • bump(deps): update dependency lerna to ^5.5.4 @renovate (#195)
    • bump(deps): update dependency typescript to v4.8.4 @renovate (#190)
    • bump(deps): update dependency esbuild to ^0.15.9 @renovate (#184)
    • bump(deps): update dependency turbo to ^1.5.4 @renovate (#185)
    • bump(deps): update dependency next-sitemap to v3.1.23 @renovate (#191)
    • bump(deps): update babel monorepo to ^7.19.3 @renovate (#193)
    • bump(deps): update dependency remark-directive-rehype to ^0.4.2 @renovate (#189)
    • bump(deps): bump actions/github-script from 6.2.0 to 6.3.0 @dependabot (#192)
    • bump(deps): bump BirthdayResearch/oss-governance-bot from 2.0.11 to 3.0.0 @dependabot (#186)
    • bump(deps): bump fuxingloh/multi-labeler from 1.8.0 to 2.0.0 @dependabot (#187)
    • bump(deps): bump actions/setup-node from 3.4.1 to 3.5.0 @dependabot (#194)
    Source code(tar.gz)
    Source code(zip)
  • v1.7.0(Sep 22, 2022)

    Features

    • feat(contented-pipeline-md): rehype-external-links @fuxingloh (#182)

    Dependencies

    • bump(deps): update dependency turbo to ^1.5.1 @renovate (#183)
    • bump(deps): update dependency autoprefixer to v10.4.12 @renovate (#181)
    • bump(deps): update dependency next to v12.3.1 @renovate (#178)
    • bump(deps): update dependency lerna to ^5.5.2 @renovate (#180)
    • bump(deps): bump codecov/codecov-action from 3.1.0 to 3.1.1 @dependabot (#179)
    Source code(tar.gz)
    Source code(zip)
  • v1.6.2(Sep 19, 2022)

    Dependencies

    • bump(contented-pipeline-md): shiki and @leafac/rehype-shiki to latest @fuxingloh (#177)
    • bump(deps): update dependency @babel/parser to ^7.19.1 @renovate (#169)
    • bump(deps): update dependency esbuild to ^0.15.8 @renovate (#176)
    • bump(deps): update dependency turbo to ^1.4.7 @renovate (#175)
    • bump(deps): update dependency autoprefixer to v10.4.11 @renovate (#170)
    • bump(deps): update dependency @headlessui/react to v1.7.2 @renovate (#172)
    • bump(deps): bump release-drafter/release-drafter from 5.20.1 to 5.21.0 @dependabot (#171)
    • bump(deps): update dependency @types/node to ^16.11.59 @renovate (#167)
    • bump(deps): update dependency mermaid to v9.1.7 @renovate (#166)
    • bump(deps): update dependency @headlessui/react to v1.7.1 @renovate (#164)
    • bump(deps): update dependency next-sitemap to v3.1.22 @renovate (#161)
    • bump(deps): update dependency @heroicons/react to v2.0.11 @renovate (#165)
    • bump(deps): update dependency autoprefixer to v10.4.10 @renovate (#162)
    • bump(deps): update dependency lerna to ^5.5.1 @renovate (#160)
    • bump(deps): update dependency clipanion to v3.2.0-rc.12 @renovate (#163)
    Source code(tar.gz)
    Source code(zip)
  • v1.6.1(Sep 9, 2022)

    Chore & Maintenance

    • chore(contented-pipeline): inject rootPath into ContentedPipeline @fuxingloh (#158)

    Dependencies

    • bump(deps): update dependency @tailwindcss/typography to v0.5.7 @renovate (#151)
    • bump(deps): update dependency vfile to ^5.3.5 @renovate (#159)
    • bump(deps): update dependency @headlessui/react to v1.7.0 @renovate (#155)
    • bump(deps): update dependency @tailwindcss/line-clamp to v0.4.2 @renovate (#150)
    • bump(deps): update dependency next to v12.3.0 @renovate (#156)
    • bump(deps): update dependency turbo to ^1.4.6 @renovate (#149)
    • bump(deps): update babel monorepo to ^7.19.0 @renovate (#122)
    • bump(deps): update dependency esbuild to ^0.15.7 @renovate (#152)
    Source code(tar.gz)
    Source code(zip)
  • v1.6.0(Sep 1, 2022)

    Features

    • feat(contented): improve watch/write to refresh index file when contents require reindex @fuxingloh (#148)
    • feat(contented-pipeline): allow Pipeline to generate multiple FileContent per file @fuxingloh (#144)

    Chore & Maintenance

    • refactor(contented): move walker & watcher logic into ./contented @fuxingloh (#147)
    • refactor(dependencies): move to sticky managed dependencies @fuxingloh (#145)

    Dependencies

    • bump(deps): update dependency lerna to ^5.5.0 @renovate (#146)
    • bump(deps): update dependency @heroicons/react to v2.0.10 @renovate (#141)
    • bump(deps): bump actions/github-script from 6.1.1 to 6.2.0 @dependabot (#138)
    • bump(deps): update dependency esbuild to ^0.15.6 @renovate (#139)
    • bump(deps): update eslint to ^5.36.0 @renovate (#140)
    • bump(deps): update dependency eslint to ^8.23.0 @renovate (#137)
    • bump(deps): update dependency @heroicons/react to v2.0.8 @renovate (#136)
    Source code(tar.gz)
    Source code(zip)
  • v1.5.0(Aug 26, 2022)

    Features

    • feat(contented-pipeline-jest-md): new JestMarkdownPipeline for jest files @fuxingloh (#135)

    Dependencies

    • bump(deps): update dependency @heroicons/react to v2.0.7 @renovate (#133)
    Source code(tar.gz)
    Source code(zip)
  • v1.4.2(Aug 25, 2022)

  • v1.4.1(Aug 25, 2022)

  • v1.4.0(Aug 25, 2022)

    Features

    • feat(contented-processor): revert old behavior of allowing custom Pipeline to be injected @fuxingloh (#130)
    • feat(module-support): add ES module support for contented @fuxingloh (#129)

    Dependencies

    • bump(deps): update dependency @types/jest to ^28.1.8 @renovate (#125)
    • bump(deps): update eslint to ^5.35.1 @renovate (#128)
    Source code(tar.gz)
    Source code(zip)
  • v1.3.0(Aug 24, 2022)

  • v1.2.0(Aug 24, 2022)

    Features

    • feat(contented-processor): allow contented-pipeline to be injected @fuxingloh (#126)

    Chore & Maintenance

    • refactor(contented-processor): move markdown processor to its directory to separate concerns @fuxingloh (#121)
    • chore(renovate.json): configure renovate deps bumping @renovate (#110)

    Dependencies

    • bump(deps): update eslint to ^5.34.0 @renovate (#123)
    • bump(deps): update dependency unist-util-visit to ^4.1.1 @renovate (#119)
    • bump(deps): update dependency next-sitemap to v3.1.21 @renovate (#118)
    • bump(deps): update dependency @types/node to ^16.11.52 @renovate (#120)
    • bump(deps): update dependency next-sitemap to v3.1.20 @renovate (#116)
    • bump(deps): update dependency mermaid to v9.1.6 @renovate (#115)
    • bump(deps): update eslint to ^5.33.1 @renovate (#114)
    • bump(deps): update dependency esbuild to ^0.15.5 @renovate (#112)
    • bump(deps): update dependency @types/node to ^16.11.51 @renovate (#111)
    • bump(deps-dev): bump lerna from 5.4.2 to 5.4.3 @dependabot (#109)
    • bump(deps-dev): bump @types/node from 16.11.48 to 16.11.49 @dependabot (#104)
    • bump(deps): bump release-drafter/release-drafter from 5.20.0 to 5.20.1 @dependabot (#103)
    • bump(deps): bump @types/jest from 28.1.6 to 28.1.7 @dependabot (#107)
    • bump(deps): bump esbuild from 0.15.1 to 0.15.3 @dependabot (#98)
    • bump(deps): bump actions/github-script from 6.1.0 to 6.1.1 @dependabot (#97)
    • bump(deps): bump ts-jest from 28.0.7 to 28.0.8 @dependabot (#99)
    • bump(deps-dev): bump lerna from 5.4.0 to 5.4.2 @dependabot (#100)
    • bump(deps): bump eslint from 8.21.0 to 8.22.0 @dependabot (#102)
    Source code(tar.gz)
    Source code(zip)
  • v1.1.2(Aug 14, 2022)

    Chore & Maintenance

    • chore(contented-preview): fix styling and missing anchor for Header link @fuxingloh (#96)

    Dependencies

    • bump(deps): bump mermaid from 9.1.4 to 9.1.5 @dependabot (#93)
    • bump(deps-dev): bump @types/node from 16.11.47 to 16.11.48 @dependabot (#95)
    • bump(deps): bump next from 12.2.4 to 12.2.5 @dependabot (#94)
    Source code(tar.gz)
    Source code(zip)
  • v1.1.1(Aug 11, 2022)

    Chore & Maintenance

    • chore(contented): use @parcel/watcher @fuxingloh (#89)
    • chore(contented-processor): remove deprecated hast deps @fuxingloh (#88)

    Dependencies

    • bump(deps): bump esbuild from 0.15.0 to 0.15.1 @dependabot (#90)
    • bump(deps): bump postcss from 8.4.14 to 8.4.16 @dependabot (#82)
    • bump(deps): bump next-sitemap from 3.1.16 to 3.1.17 @dependabot (#85)
    • bump(deps): bump @typescript-eslint/parser from 5.32.0 to 5.33.0 @dependabot (#83)
    • bump(deps-dev): bump turbo from 1.4.2 to 1.4.3 @dependabot (#84)
    • bump(deps-dev): bump lerna from 5.3.0 to 5.4.0 @dependabot (#86)
    • bump(deps): bump next from 12.2.3 to 12.2.4 @dependabot (#75)
    • bump(deps): bump @babel/generator from 7.18.10 to 7.18.12 @dependabot (#77)
    • bump(deps): bump tailwindcss from 3.1.7 to 3.1.8 @dependabot (#78)
    • bump(deps): bump @typescript-eslint/eslint-plugin from 5.32.0 to 5.33.0 @dependabot (#79)
    • bump(deps): bump esbuild from 0.14.53 to 0.15.0 @dependabot (#81)
    • bump(deps): bump next-sitemap from 3.1.15 to 3.1.16 @dependabot (#72)
    • bump(deps): bump jest-extended from 3.0.1 to 3.0.2 @dependabot (#73)
    • bump(deps): bump esbuild from 0.14.51 to 0.14.53 @dependabot (#71)
    • bump(deps): bump mermaid from 9.1.3 to 9.1.4 @dependabot (#74)
    • bump(deps): bump @typescript-eslint/parser from 5.31.0 to 5.32.0 @dependabot (#70)
    • bump(deps): bump @typescript-eslint/eslint-plugin from 5.31.0 to 5.32.0 @dependabot (#67)
    • bump(deps): bump @babel/generator from 7.18.9 to 7.18.10 @dependabot (#69)
    • bump(deps-dev): bump turbo from 1.4.0 to 1.4.2 @dependabot (#68)
    • bump(deps): bump tailwindcss from 3.1.6 to 3.1.7 @dependabot (#63)
    • bump(deps-dev): bump @types/node from 16.11.46 to 16.11.47 @dependabot (#64)
    • bump(deps-dev): bump turbo from 1.3.4 to 1.4.0 @dependabot (#65)
    • bump(deps): bump eslint from 8.20.0 to 8.21.0 @dependabot (#66)
    • bump(deps): bump esbuild from 0.14.50 to 0.14.51 @dependabot (#57)
    • bump(deps-dev): bump @types/node from 16.11.45 to 16.11.46 @dependabot (#58)
    • bump(deps): bump next-sitemap from 3.1.13 to 3.1.15 @dependabot (#59)
    • bump(deps-dev): bump lerna from 5.2.0 to 5.3.0 @dependabot (#60)
    • bump(deps): bump autoprefixer from 10.4.7 to 10.4.8 @dependabot (#61)
    Source code(tar.gz)
    Source code(zip)
  • v1.1.0(Jul 26, 2022)

  • v1.0.4(Jul 26, 2022)

  • v1.0.3(Jul 26, 2022)

    Fixes

    • fix(contented-preview): types should be dedup-ed @fuxingloh (#52)

    Chore & Maintenance

    • chore(contented-preview): version lock all the deps due to "npm i" drift @fuxingloh (#54)
    • chore(contented-preview): remove eslint next, not required @fuxingloh (#53)

    Dependencies

    • bump(deps): bump @typescript-eslint/parser from 5.30.7 to 5.31.0 @dependabot (#51)
    • bump(deps): bump @typescript-eslint/eslint-plugin from 5.30.7 to 5.31.0 @dependabot (#50)
    • bump(deps-dev): bump prettier-plugin-tailwindcss from 0.1.12 to 0.1.13 @dependabot (#49)
    • bump(deps): bump next-sitemap from 3.1.12 to 3.1.13 @dependabot (#48)
    Source code(tar.gz)
    Source code(zip)
  • v1.0.2(Jul 26, 2022)

  • v1.0.1(Jul 25, 2022)

  • v1.0.0(Jul 25, 2022)

    Features

    • feat(contented): rewrite contented pipeline @fuxingloh (#41)

    Chore & Maintenance

    • chore(workflow): add "CI / Test" and optimize turbo.json efficiency @fuxingloh (#45)

    Dependencies

    • bump(deps): bump fuxingloh/multi-labeler from 1.7.0 to 1.8 @dependabot (#42)
    • bump(deps): bump eslint-config-next from 12.2.2 to 12.2.3 @dependabot (#38)
    • bump(deps): bump next from 12.2.2 to 12.2.3 @dependabot (#39)
    Source code(tar.gz)
    Source code(zip)
  • v0.3.0(Jul 21, 2022)

    Features

    • feat(contented-preview): add navigation menu for mobile screen @fuxingloh (#35)

    Chore & Maintenance

    • chore(contented-preview): rename first page to index.md so it start with / @fuxingloh (#36)
    • chore(contented-example): update documentations to fix writing mistakes @fuxingloh (#34)
    Source code(tar.gz)
    Source code(zip)
  • v0.2.2(Jul 19, 2022)

    Chore & Maintenance

    • chore(contented-preview): clean up markdown due to new ui change @fuxingloh (#33)
    • chore(contented-preview): update inline code block style @fuxingloh (#32)
    • chore(governance): add more area governance labels @fuxingloh (#31)

    Dependencies

    • bump(deps-dev): bump eslint from 8.19.0 to 8.20.0 @dependabot (#29)
    • bump(deps-dev): bump @types/node from 16.11.44 to 16.11.45 @dependabot (#28)
    Source code(tar.gz)
    Source code(zip)
Owner
Birthday Research
Blockchain Research & Development
Birthday Research
Shikhar 4 Oct 9, 2022
It's a repository to studies. Its idea is to learn about Nx and its plugins.

StudyingNx This project was generated using Nx. ?? Smart, Fast and Extensible Build System Adding capabilities to your workspace Nx supports many plug

Open-ish 4 May 13, 2022
A command line application to simplify the git workflow on committing, pushing and others commands.

Git-Suite A command line application to simplify the git workflow on committing, pushing and others commands. Prerequisites Install Node Package Manag

Lucas Gobatto 5 Aug 10, 2022
Workflow to re-trigger workflow of all open PRs when base updates

Workflow to re-trigger workflow of all open PRs when base updates

James Tan 4 Aug 28, 2022
A GitHub app to report failed workflow job actions and notify pull request creator with custom report message for the failed workflow job.

Workflow Reporter A GitHub App built with Probot that reports failed workflow job actions and notify the pull request creator with custom report messa

Divyanshu Shekhar 14 Nov 12, 2022
Incredible drastically simplifies creation of developer video content. It offers a unified workflow to storyboard, record, collaborate and produce the video.

?? Introduction Incredible drastically simplifies creation of developer video content. It offers a unified workflow to storyboard, record, collaborate

Incredible 113 Dec 6, 2022
Can see everything, beware of its omniscience, kneel before its greatness.

Can see everything, beware of its omniscience, kneel before its greatness. Summary Presentation Installation Removing Credits Presentation Main goal T

Duc Justin 3 Sep 30, 2022
Markdown note maker (with Git sync) using Tauri.

Mediocre Markdown note maker (with Git sync) using Tauri. Screens Tech Stack Frontend Monaco Editor for the editor interface Chakra UI library Redux T

Nilay Savant 14 Dec 6, 2022
Download Notion pages as markdown and image files, preserving hierarchy and enabling workflow properties. Works with Docusaurus.

notion-pull notion-pull lets you use Notion as your editor for markdown-based static site generators like Docusaurus. Using Notion instead of raw mark

SIL LSDev 46 Jan 7, 2023
Repository for hands on practice in Git and GitHub workshop

Git and Github Workshop Jan 2022 Successful contributors ✨ of this project will be featured on the GDSC website so as to bring attraction and learn vi

IIIT Vadodara Open Source 2 Feb 10, 2022
🫥 Copy repository without the git information for self-managed gitlab, very fast.

English | 简体中文 degitlab ?? degitlab -> de-git-lab Copy repository without the git information for self-managed gitlab, very fast. Why? In self-managed

東澔 6 Oct 16, 2022
Learn Basic of Node Express Server and Git & Github by creating Pull Request in this repository.

hacktoberfest-express-server-2022 Learn Basic of Node Express Server and Git & Github by creating Pull Request in this repository. Special Note For Ev

NetScape-Web 3 Oct 6, 2022
jQuery plugin to encourage strong user passwords

Naked Password¶ ↑ Simple jQuery plugin to improve security on passwords. Usage¶ ↑ Naked password is extremely easy to use. All thats needed is for you

Platform45 307 Nov 3, 2022
Codebraid Preview provides a Markdown preview for Pandoc documents within VS Code.

Codebraid Preview provides a Markdown preview for Pandoc documents within VS Code. Most Markdown previews don't support all of Pandoc's extensions to Markdown syntax. Codebraid Preview supports 100% of Pandoc features—because the preview is generated by Pandoc itself! There is also full bidirectional scroll sync and document export.

Geoffrey Poore 12 Dec 28, 2022
Simple and Extensible Markdown Parser for Svelte, however its simplicity can be extended to any framework.

svelte-simple-markdown This is a fork of Simple-Markdown, modified to target Svelte, however due to separating the parsing and outputting steps, it ca

Dave Caruso 3 May 22, 2022
Chappe - 🧑‍💻 Developer Docs builder. Write guides in Markdown and references in API Blueprint. Comes with a built-in search engine.

Chappe Developer Docs builder. Write guides in Markdown and references in API Blueprint. Comes with a built-in search engine. Chappe is a Developer Do

Valerian Saliou 146 Jan 1, 2023
🧑‍💻 Developer Docs builder. Write guides in Markdown and references in API Blueprint. Comes with a built-in search engine.

Developer Docs builder. Write guides in Markdown and references in API Blueprint. Comes with a built-in search engine. Chappe is a Developer Docs buil

Crisp (OSS) 146 Jan 1, 2023
Toolkit for authoring Nuxt Themes.

@nuxt-themes/config Toolkit for authoring Nuxt Themes. Features ✨ Lets you create a theme from any Nuxt project ?? Handles theme.config.ts file ?? Off

Nuxt Themes 28 Dec 6, 2022