Skip to content

Commit

Permalink
Normalize package references (patch)
Browse files Browse the repository at this point in the history
  • Loading branch information
lukiffer committed Apr 15, 2024
1 parent 7b7fafe commit bb15ab7
Show file tree
Hide file tree
Showing 8 changed files with 1,398 additions and 2,054 deletions.
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1 +1 @@
* @cncsc/conventions-reviewers @cncsc/devops-reviewers @cncsc/application-reviewers
* @lukiffer
2 changes: 1 addition & 1 deletion .github/workflows/cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
jobs:
on-success:
name: Semantic Release
uses: cncsc/actions/.github/workflows/semantic-release.yaml@main
uses: fcgroup/actions/.github/workflows/semantic-release.yaml@main
secrets:
GIT_TOKEN_BASIC: ${{ secrets.GIT_TOKEN_BASIC }}
NPM_ACCESS_TOKEN: ${{ secrets.NPM_ACCESS_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ on:
jobs:
ci:
name: Validation
uses: cncsc/actions/.github/workflows/validation.yaml@main
uses: fcgroup/actions/.github/workflows/validation.yaml@main
with:
runDefaultLinters: false
2 changes: 1 addition & 1 deletion .releaserc.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"extends": "@cncsc/semantic-release-config/npm"
"extends": "@bdrk/semantic-release-config/npm"
}
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@
same "printed page" as the copyright notice for easier
identification within third-party archives.

Copyright 2023 Armor Defense Inc.
Copyright 2023 Fritz Consulting Group, Inc.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
# TypeScript Config

This repository contains the baseline TypeScript compiler configuration for all CNCSC projects
that use TypeScript 3.7 or newer.
This repository contains the baseline TypeScript compiler configuration for all Bedrock projects
that use TypeScript 5 or newer.

## Referencing this Configuration

You can reference this config by installing the NPM package in your project:

```bash
npm install --save-dev @cncsc/typescript-config
npm install --save-dev @bdrk/typescript-config
```

Then replace the contents of your `tsconfig.json` file with:

```json
{
"extends": "@cncsc/typescript-config"
"extends": "@bdrk/typescript-config"
}
```

Expand Down
Loading

0 comments on commit bb15ab7

Please sign in to comment.