Versions

  • v8

    10/23/2023
    Open: Version
    Changes from v7 to v8
    +1
    -1
    let chalkExample = (async () => {
    const { default: chalk } = await import("npm:chalk");
    return chalk.red("hello world (this text is not red)");
    })();
    export let chalkExample = (async () => {
    const { default: chalk } = await import("npm:chalk");
    return chalk.red("hello world (this text is not red)");
    })();
  • v7

    7/27/2023
    Open: Version
    Changes from v6 to v7
    +1
    -1
    let chalkExample = (async () => {
    const { default: chalk } = await import("npm:chalk");
    return chalk.red("hello world");
    })();
    let chalkExample = (async () => {
    const { default: chalk } = await import("npm:chalk");
    return chalk.red("hello world (this text is not red)");
    })();
  • v6

    7/27/2023
    Open: Version
    Changes from v5 to v6
    +1
    -1
    let chalkExample = (async () => {
    const { default: chalk } = await import("npm:chalk");
    return chalk.blue("hello world");
    })();
    let chalkExample = (async () => {
    const { default: chalk } = await import("npm:chalk");
    return chalk.red("hello world");
    })();
  • v5

    7/27/2023
    Open: Version
    Changes from v4 to v5
    +1
    -1
    let chalkExample = (async () => {
    const { default: chalk } = await import("npm:chalk");
    return chalk.blue("hi");
    })();
    let chalkExample = (async () => {
    const { default: chalk } = await import("npm:chalk");
    return chalk.blue("hello world");
    })();
  • v4

    7/27/2023
    Open: Version
    Changes from v3 to v4
    +1
    -1
    let chalkExample = (async () => {
    const { default: chalk } = await import("npm:chalk");
    return cchalk.blue("hi");
    })();
    let chalkExample = (async () => {
    const { default: chalk } = await import("npm:chalk");
    return chalk.blue("hi");
    })();
  • v3

    7/27/2023
    Open: Version
    Changes from v2 to v3
    +0
    -0
    ⦚ 4 unchanged lines ⦚
    ⦚ 4 unchanged lines ⦚
  • v2

    7/27/2023
    Open: Version
    Changes from v1 to v2
    +1
    -1
    let chalkExample = (async () => {
    const { default: chalk } = await import("npm:chalk");
    return chalk.blue("hi");
    })();
    let chalkExample = (async () => {
    const { default: chalk } = await import("npm:chalk");
    return cchalk.blue("hi");
    })();
  • v1

    7/27/2023
    Open: Version
    Changes from v0 to v1
    +1
    -1
    let chalkExample = (async () => {
    const chalk = await import("npm:chalk");
    return chalk.blue("hi");
    })();
    let chalkExample = (async () => {
    const { default: chalk } = await import("npm:chalk");
    return chalk.blue("hi");
    })();
  • v0

    7/27/2023
    Open: Version
    +4
    -0

    let chalkExample = (async () => {
    const chalk = await import("npm:chalk");
    return chalk.blue("hi");
    })();
Updated: October 23, 2023