Skip to content

Commit 02a996b

Browse files
committed
Rename packages
1 parent b2d64b8 commit 02a996b

File tree

11 files changed

+20
-19
lines changed

11 files changed

+20
-19
lines changed

.circleci/config.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,8 @@ workflows:
119119
ignore: main
120120

121121
- build:
122-
context: circleci-docs-static
122+
context:
123+
- circleci-docs-static
123124

124125
- validate:
125126
requires:

CONTRIBUTING.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,18 +44,18 @@ There are several ways to contribute to the CircleCI Docs Static Site:
4444
### Initial Setup
4545

4646
1. **Fork the repository**:
47-
- Visit [https://github.com/circleci/circleci-docs-static](https://github.com/circleci/circleci-docs-static)
47+
- Visit [https://github.com/circleci/circleci-docs](https://github.com/circleci/circleci-docs)
4848
- Click the "Fork" button to create your own copy
4949

5050
2. **Clone your fork**:
5151
```bash
52-
git clone https://github.com/YOUR-USERNAME/circleci-docs-static.git
53-
cd circleci-docs-static
52+
git clone https://github.com/YOUR-USERNAME/circleci-docs.git
53+
cd circleci-docs
5454
```
5555

5656
3. **Add the upstream remote**:
5757
```bash
58-
git remote add upstream https://github.com/circleci/circleci-docs-static.git
58+
git remote add upstream https://github.com/circleci/circleci-docs.git
5959
```
6060

6161
4. **Install dependencies**:

DEVELOPMENT.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ This document provides comprehensive guidance for developers working on the Circ
2323

2424
1. **Clone the repository**:
2525
```bash
26-
git clone https://github.com/circleci/circleci-docs-static.git
27-
cd circleci-docs-static
26+
git clone https://github.com/circleci/circleci-docs.git
27+
cd circleci-docs
2828
```
2929

3030
2. **Install dependencies**:

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ This technical documentation consists of several specialized files:
3737

3838
1. **Set up your environment**:
3939
```bash
40-
git clone https://github.com/circleci/circleci-docs-static.git
41-
cd circleci-docs-static
40+
git clone https://github.com/circleci/circleci-docs.git
41+
cd circleci-docs
4242
npm ci
4343
```
4444
2. **Make sure you've cloned server-4* branches (Server Administration Docs)**

cmd/create-redirects/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
"golang.org/x/sync/errgroup"
1515
"golang.org/x/sync/semaphore"
1616

17-
"github.com/circleci/circleci-docs-static/internal/redirects"
17+
"github.com/circleci/circleci-docs/internal/redirects"
1818
)
1919

2020
type options struct {

cmd/validate-redirects/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ import (
1818
"golang.org/x/sync/errgroup"
1919
"golang.org/x/sync/semaphore"
2020

21-
"github.com/circleci/circleci-docs-static/internal/closer"
22-
"github.com/circleci/circleci-docs-static/internal/redirects"
21+
"github.com/circleci/circleci-docs/internal/closer"
22+
"github.com/circleci/circleci-docs/internal/redirects"
2323
)
2424

2525
const (

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/circleci/circleci-docs-static
1+
module github.com/circleci/circleci-docs
22

33
go 1.24.4
44

internal/redirects/redirects.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55

66
"github.com/goccy/go-yaml"
77

8-
"github.com/circleci/circleci-docs-static/internal/closer"
8+
"github.com/circleci/circleci-docs/internal/closer"
99
)
1010

1111
const DefaultFile = "scripts/redirects_v2.yml"

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "circleci-docs-static",
2+
"name": "circleci-docs",
33
"version": "1.0.0",
44
"description": "his is the public repository for <https://circleci.com/docs/>, a static website generated with [Antora](https://antora.org/).",
55
"scripts": {
@@ -13,7 +13,7 @@
1313
},
1414
"repository": {
1515
"type": "git",
16-
"url": "git://github.com/circleci/circleci-docs-static.git"
16+
"url": "git://github.com/circleci/circleci-docs.git"
1717
},
1818
"license": "",
1919
"type": "commonjs",

0 commit comments

Comments
 (0)