0.0.34 • Published 1 year ago

@inlang/cross-sell-ninja v0.0.34

Weekly downloads
-
License
-
Repository
-
Last release
1 year ago

Cross-sell Ninja 🥷 package

Features

  • Workflow Verification: Ensures that the GitHub Actions workflow incorporating the Ninja i18n lint action is present in a project's .github/workflows directory.
  • Automated Workflow Addition: If not present, the package can automatically add a workflow to incorporate Ninja i18n linting into the project.

Installation

Add this package to your dependencies in package.json & install it using pnpm install:

"@inlang/cross-sell-ninja": "workspace:*"

Usage

This module exports two main asynchronous functions:

isAdopted(fs: NodeishFilesystem): Promise<boolean>

Verifies if the Ninja i18n GitHub Action is adopted within the GitHub workflow files of your project.

Parameters

  • fs: A NodeishFilesystem object for file system interactions.

Returns

  • Promise<boolean>: true if the Ninja i18n GitHub Action workflow is found, false otherwise.

add(fs: NodeishFilesystem): Promise<void>

Adds the Ninja i18n GitHub Action workflow to the repository's .github/workflows directory if it's not already present.

Parameters

  • fs: A NodeishFilesystem object for file system interactions.

Example

import { isAdopted, add } from '@inlang/cross-sell-ninja';
import { NodeishFilesystem } from '@lix-js/fs';

async function ensureNinjaAdoption(fs: NodeishFilesystem) {
  const isWorkflowAdopted = await isAdopted(fs);

  if (!isWorkflowAdopted) {
    // Optionally prompt for user confirmation
    const userConfirmed = await promptUser("Do you want to add the Ninja i18n workflow?");

    if (userConfirmed) {
      await add(fs);
      console.log('Ninja i18n workflow added.');
    } else {
      console.log('User declined to add Ninja i18n workflow.');
    }
  } else {
    console.log('Ninja i18n workflow is already adopted.');
  }
}

Contributing

Contributions are highly appreciated! Whether it's feature requests, bug reports, or pull requests, please feel free to contribute. Check out our Discord for community discussions and updates.

0.0.20

1 year ago

0.0.21

1 year ago

0.0.22

1 year ago

0.0.23

1 year ago

0.0.24

1 year ago

0.0.25

1 year ago

0.0.18

1 year ago

0.0.19

1 year ago

0.0.30

1 year ago

0.0.31

1 year ago

0.0.32

1 year ago

0.0.33

1 year ago

0.0.34

1 year ago

0.0.26

1 year ago

0.0.27

1 year ago

0.0.28

1 year ago

0.0.29

1 year ago

0.0.16

1 year ago

0.0.17

1 year ago

0.0.14

1 year ago

0.0.15

1 year ago

0.0.13

1 year ago

0.0.12

1 year ago

0.0.11

1 year ago

0.0.10

1 year ago

0.0.9

1 year ago

0.0.8

1 year ago

0.0.6

1 year ago

0.0.5

1 year ago

0.0.4

1 year ago

0.0.3

1 year ago

0.0.2

1 year ago

0.0.1

1 year ago

0.0.0

1 year ago