Skip to content
This repository was archived by the owner on Apr 13, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/codeql.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ name: "CodeQL"
on:
push:
branches:
- master
- main
pull_request:
branches:
- master
- main
schedule:
- cron: "28 22 * * 3"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Release
on:
push:
branches:
- master
- main

jobs:
release:
Expand Down
2 changes: 1 addition & 1 deletion .releaserc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"branches": [
"master"
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Installs nodecg-io to your current NodeCG installation into a subdirectory calle

A production install fetches tarballs of the needed packages from the official npm registry, unpacks them, creates a `package.json` with all packages in a npm v7 workspace configuration and installs dependencies that way.

A development install clones the official git repository (`master`), installs dependencies builds all packages.
A development install clones the official git repository (`main`), installs dependencies builds all packages.

Either way at the end of the installation it will automatically add the nodecg-io directory (and samples if dev install and selected) to the `bundles.paths` array of your NodeCG configuration. If you don't have a NodeCG configuration it will create one for you.

Expand Down
2 changes: 1 addition & 1 deletion test/install/development.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import * as dev from "../../src/install/development";
import { removeDirectory } from "../../src/utils/fs";

const defaultFetchResult: git.FetchResult = {
defaultBranch: "master",
defaultBranch: "main",
fetchHead: "2aae6c35c94fcfb415dbe95f408b9ce91ee846ed",
fetchHeadDescription: "",
};
Expand Down