Skip to content

Commit ca6d7fc

Browse files
committed
Rename and reset version
1 parent f02e202 commit ca6d7fc

File tree

5 files changed

+26
-26
lines changed

5 files changed

+26
-26
lines changed

.github/workflows/check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ jobs:
109109
write-mode: overwrite
110110
path: index.js
111111
contents: |
112-
import '@makenew/tsmodule'
112+
import '@seamapi/makenew-tsmodule'
113113
- name: Install
114114
run: npm install --save ${{ steps.packages.outputs.paths }}
115115
- name: Run

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# TypeScript Module Package Skeleton
22

3-
[![npm](https://img.shields.io/npm/v/@makenew/tsmodule.svg)](https://www.npmjs.com/package/@makenew/tsmodule)
4-
[![GitHub Actions](https://github.com/makenew/tsmodule/actions/workflows/check.yml/badge.svg)](https://github.com/makenew/tsmodule/actions/workflows/check.yml)
3+
[![npm](https://img.shields.io/npm/v/@seamapi/makenew-tsmodule.svg)](https://www.npmjs.com/package/@seamapi/makenew-tsmodule)
4+
[![GitHub Actions](https://github.com/seamapi/makenew-tsmodule/actions/workflows/check.yml/badge.svg)](https://github.com/seamapi/makenew-tsmodule/actions/workflows/check.yml)
55

66
Package skeleton for a TypeScript module.
77

@@ -46,7 +46,7 @@ Bootstrap a new TypeScript module in five minutes or less.
4646
1. Create an empty (**non-initialized**) repository on GitHub.
4747
2. Clone the main branch of this repository with
4848
```
49-
$ git clone --single-branch [email protected]:makenew/tsmodule.git <new-node-lib>
49+
$ git clone --single-branch [email protected]:seamapi/makenew-tsmodule.git <new-node-lib>
5050
$ cd <new-node-lib>
5151
```
5252
Optionally, reset to the latest version with
@@ -84,7 +84,7 @@ you can fetch and merge in changes from this repository.
8484
Add this as a new remote with
8585

8686
```
87-
$ git remote add upstream [email protected]:makenew/tsmodule.git
87+
$ git remote add upstream [email protected]:seamapi/makenew-tsmodule.git
8888
```
8989

9090
You can then fetch and merge changes with
@@ -100,14 +100,14 @@ Note that `CHANGELOG.md` is just a template for this skeleton.
100100
The actual changes for this project are documented in the commit history
101101
and summarized under [Releases].
102102

103-
[Releases]: https://github.com/makenew/tsmodule/releases
103+
[Releases]: https://github.com/seamapi/makenew-tsmodule/releases
104104

105105
## Installation
106106

107107
Add this as a dependency to your project using [npm] with
108108

109109
```
110-
$ npm install @makenew/tsmodule
110+
$ npm install @seamapi/makenew-tsmodule
111111
```
112112

113113
[npm]: https://www.npmjs.com/
@@ -117,8 +117,8 @@ $ npm install @makenew/tsmodule
117117
### Quickstart
118118

119119
```
120-
$ git clone https://github.com/makenew/tsmodule.git
121-
$ cd tsmodule
120+
$ git clone https://github.com/seamapi/makenew-tsmodule.git
121+
$ cd makenew-tsmodule
122122
$ nvm install
123123
$ npm install
124124
```
@@ -143,10 +143,10 @@ The [source code] is hosted on GitHub.
143143
Clone the project with
144144

145145
```
146-
$ git clone [email protected]:makenew/tsmodule.git
146+
$ git clone [email protected]:seamapi/makenew-tsmodule.git
147147
```
148148

149-
[source code]: https://github.com/makenew/tsmodule
149+
[source code]: https://github.com/seamapi/makenew-tsmodule
150150

151151
### Requirements
152152

@@ -184,7 +184,7 @@ This will push a new git tag which will trigger a GitHub action.
184184
Publishing may be triggered using a [workflow_dispatch on GitHub Actions].
185185

186186
[npm-version]: https://docs.npmjs.com/cli/version
187-
[workflow_dispatch on GitHub Actions]: https://github.com/makenew/tsmodule/actions?query=workflow%3Aversion
187+
[workflow_dispatch on GitHub Actions]: https://github.com/seamapi/makenew-tsmodule/actions?query=workflow%3Aversion
188188

189189
## GitHub Actions
190190

@@ -217,7 +217,7 @@ Please submit and comment on bug reports and feature requests.
217217

218218
To submit a patch:
219219

220-
1. Fork it (https://github.com/makenew/tsmodule/fork).
220+
1. Fork it (https://github.com/seamapi/makenew-tsmodule/fork).
221221
2. Create your feature branch (`git checkout -b my-new-feature`).
222222
3. Make changes.
223223
4. Commit your changes (`git commit -am 'Add some feature'`).

makenew.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,9 @@ makenew () {
6565
find_replace "s/Package skeleton for a TypeScript module\./${mk_description}/g"
6666
find_replace "s/Evan Sosenko/${mk_author}/g"
6767
find_replace "s/razorx@evansosenko\.com/${mk_email}/g"
68-
find_replace "s|@makenew/tsmodule|${mk_slug}|g"
69-
find_replace "s|makenew/tsmodule|${mk_user}/${mk_repo}|g"
70-
find_replace "s|tsmodule|${mk_repo}|g"
68+
find_replace "s|@seamapi/makenew-tsmodule|${mk_slug}|g"
69+
find_replace "s|seamapi/makenew-tsmodule|${mk_user}/${mk_repo}|g"
70+
find_replace "s|makenew-tsmodule|${mk_repo}|g"
7171

7272
echo
7373
echo 'Replacing boilerplate.'

package-lock.json

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

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "@makenew/tsmodule",
3-
"version": "2.1.0",
2+
"name": "@seamapi/makenew-tsmodule",
3+
"version": "0.0.0",
44
"description": "Package skeleton for a TypeScript module.",
55
"type": "module",
66
"main": "index.js",
@@ -13,9 +13,9 @@
1313
"keywords": [
1414
"node"
1515
],
16-
"homepage": "https://github.com/makenew/tsmodule",
17-
"bugs": "https://github.com/makenew/tsmodule/issues",
18-
"repository": "makenew/tsmodule",
16+
"homepage": "https://github.com/seamapi/makenew-tsmodule",
17+
"bugs": "https://github.com/seamapi/makenew-tsmodule/issues",
18+
"repository": "seamapi/makenew-tsmodule",
1919
"license": "MIT",
2020
"author": {
2121
"name": "Evan Sosenko",

0 commit comments

Comments
 (0)