@temir.ra/create-template 0.5.4 → 0.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE CHANGED
@@ -1,21 +1,21 @@
1
- MIT License
2
-
3
- Copyright (c) 2026 Temir Ra
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Temir Ra
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
21
  SOFTWARE.
package/README.md CHANGED
@@ -1,79 +1,144 @@
1
- # Introduction
2
-
3
- This template scaffolds a package that is itself a template for other packages.
4
-
5
- ## Table of Contents
6
-
7
- 1. [Quick Start](#quick-start)
8
- 2. [Documentation](#documentation)
9
- 3. [DevOps](#devops)
10
- 1. [Change Management](#change-management)
11
- 2. [Publish](#publish)
12
-
13
- # Quick Start
14
-
15
- ```bash
16
- # placeholder:
17
- # <TEMPLATE_PACKAGE_NAME: @temir.ra/create-template
18
- # <TEMPLATE_NAME: @temir.ra/template
19
-
20
- # print the latest version
21
- npm info "@temir.ra/create-template" version
22
-
23
- # create/update a package from the template in the current directory
24
- npm create --no-install --no-git "@temir.ra/template@latest" .
25
-
26
- # set metadata in package.json
27
-
28
- npm update
29
- ```
30
-
31
- # Documentation
32
-
33
- The following sections explain the configurations and conventions baked into the generated package. Useful when adapting it to fit specific needs.
34
-
35
- *&lt;DOCUMENTATION&gt;*
36
-
37
- # DevOps
38
-
39
- ```bash
40
- npm install
41
- npm update
42
-
43
- npm run clean
44
- npm run build
45
- npm run tests
46
-
47
- npx tsx dist/cli.bundle.js -- example/
48
- ```
49
-
50
- ## Change Management
51
-
52
- 1. Create a new branch for the change.
53
- 2. Make the changes and commit.
54
- 3. Bump the version in [`package.json`](package.json).
55
- 4. Add an entry for the new version in [`CHANGELOG.md`](CHANGELOG.md).
56
- 5. Pull-request the branch.
57
- 6. Ensure package artifacts are current.
58
- 7. Publish.
59
-
60
- ## Publish
61
-
62
- `~/.npmrc` or `.npmrc`:
63
-
64
- ```ini
65
- @temir.ra:registry=https://registry.npmjs.org/
66
- ```
67
-
68
- `~/.bunfig.toml` or `bunfig.toml`:
69
-
70
- ```toml
71
- [install.scopes]
72
- "temir.ra" = { url = "https://registry.npmjs.org/" }
73
- ```
74
-
75
- ```bash
76
- # registry.npmjs.org/
77
- npm login
78
- npm publish
79
- ```
1
+ # Introduction
2
+
3
+ This template scaffolds a package that is itself a template for other packages.
4
+
5
+ ## Table of Contents
6
+
7
+ 1. [Quick Start](#quick-start)
8
+ 2. [Documentation](#documentation)
9
+ 3. [DevOps](#devops)
10
+ 1. [Change Management](#change-management)
11
+ 2. [Registry](#registry)
12
+ 3. [CI/CD Workflows](#cicd-workflows)
13
+
14
+ # Quick Start
15
+
16
+ ```bash
17
+ # print the latest version
18
+ npm info "@temir.ra/create-template" version
19
+
20
+ # create/update a package from the template in the current directory
21
+ npm create --no-install --no-git "@temir.ra/template@latest" .
22
+
23
+ # set metadata in package.json
24
+
25
+ npm update
26
+ ```
27
+
28
+ # Documentation
29
+
30
+ The following sections explain the configurations and conventions baked into the generated package. Useful when adapting it to fit specific needs.
31
+
32
+ *&lt;DOCUMENTATION&gt;*
33
+
34
+ # DevOps
35
+
36
+ ```bash
37
+ npm install
38
+ npm update
39
+
40
+ npm run clean
41
+ npm run build
42
+ npm run tests
43
+
44
+ npx tsx dist/cli.bundle.js -- example/
45
+ ```
46
+
47
+ ```bash
48
+ git fetch upstream
49
+ git fetch origin
50
+ git fetch . upstream/main:origin/main
51
+ git fetch . origin/main:main
52
+ git push origin main
53
+ git merge --ff-only main
54
+ git push
55
+ ```
56
+
57
+ ## Change Management
58
+
59
+ 1. Create a new branch for the change.
60
+ 2. Make the changes and commit.
61
+ 3. Bump the version in [`package.json`](package.json).
62
+ 4. Add an entry for the new version in [`CHANGELOG.md`](CHANGELOG.md).
63
+ 5. Pull-request the branch.
64
+ 6. Ensure package artifacts are current.
65
+ 7. Publish.
66
+
67
+ ## Registry
68
+
69
+ `.npmrc`:
70
+
71
+ ```ini
72
+ @temir.ra:registry=https://registry.npmjs.org/
73
+ //registry.npmjs.org/:_authToken=${NPMJSORG_REGISTRY_AUTH_TOKEN}
74
+ ```
75
+
76
+ or `bunfig.toml`:
77
+
78
+ ```toml
79
+ [install.scopes]
80
+ "temir.ra" = { url = "https://registry.npmjs.org/", token = "$NPMJSORG_REGISTRY_AUTH_TOKEN" }
81
+ ```
82
+
83
+ ```bash
84
+ # registry.npmjs.org/
85
+ export NPMJSORG_REGISTRY_AUTH_TOKEN=<AUTH_TOKEN>
86
+ # or
87
+ $env:NPMJSORG_REGISTRY_AUTH_TOKEN = "<AUTH_TOKEN>"
88
+ npm publish
89
+ ```
90
+
91
+ ## CI/CD Workflows
92
+
93
+ ### Build and Publish
94
+
95
+ ⚠️ `.npmrc` configuring the package registry and its authentication token is required for the workflow to work.
96
+
97
+ |Parameter|Type|Description|
98
+ |-----|-----|-----|
99
+ |`RUNNER_LABEL`|Variable|The label of the runner to use for the workflow.|
100
+ |`ACCESS_TOKEN`|Secret|The authentication token for the package registry.|
101
+
102
+ `.github/workflows/build-publish.yml`:
103
+
104
+ ```yaml
105
+ name: Build and Publish
106
+
107
+ on:
108
+ push:
109
+ branches:
110
+ - main
111
+
112
+ jobs:
113
+ publish:
114
+ runs-on: ${{ vars.RUNNER_LABEL }}
115
+ steps:
116
+ - uses: actions/checkout@v4
117
+
118
+ - name: Install
119
+ env:
120
+ NPMJSORG_REGISTRY_AUTH_TOKEN: ${{ secrets.ACCESS_TOKEN }}
121
+ run: npm ci
122
+
123
+ - name: Build
124
+ run: npm run build
125
+
126
+ - name: Test
127
+ run: npm run tests
128
+
129
+ - name: Publish
130
+ env:
131
+ NPMJSORG_REGISTRY_AUTH_TOKEN: ${{ secrets.ACCESS_TOKEN }}
132
+ run: |
133
+ PKG_NAME=$(node -p "require('./package.json').name")
134
+ PKG_VERSION=$(node -p "require('./package.json').version")
135
+ NPM_TAG="latest"
136
+ if echo "$PKG_VERSION" | grep -q -- '-'; then
137
+ NPM_TAG="next"
138
+ fi
139
+ if npm view "$PKG_NAME@$PKG_VERSION" version >/dev/null 2>&1; then
140
+ echo "$PKG_NAME@$PKG_VERSION already published, skipping."
141
+ else
142
+ npm publish --tag "$NPM_TAG"
143
+ fi
144
+ ```
package/dist/CHANGELOG.md CHANGED
@@ -1,106 +1,116 @@
1
- # Version 0
2
-
3
- ## 0.5.4
4
-
5
- 1. Minor fixes.
6
-
7
- ## 0.5.0
8
-
9
- 1. Moved `template/` from package root to `dist/`.
10
-
11
- ## 0.4.4
12
-
13
- 1. Synced template files with `ts-lib@0.13.0-pre.7` template.
14
- 2. Synced files with `self` as template.
15
-
16
- ## 0.4.3
17
-
18
- 1. Fixed versioning issue.
19
-
20
- ## 0.4.2
21
-
22
- 1. Updated from `ts-lib@0.12.0-pre.1` template.
23
-
24
- ## 0.4.1
25
-
26
- 1. Minor updates in the README.
27
-
28
- ## 0.4.0
29
-
30
- 1. Synced template files with `ts-lob@0.11.0-pre.11` template.
31
- 2. Replaced `bun run` with `npmx tsx` in DevOps commands.
32
- 3. Cleaned up Quick Start section.
33
- 4. Updated files from self as template.
34
-
35
- ## 0.3.0
36
-
37
- 1. Synced template files with `ts-lib@0.10.0-pre.1` template.
38
- 2. Added `node:` prefix to imports.
39
- 3. Updated files from `self`.
40
-
41
- ## 0.2.1
42
-
43
- 1. Updated Quick Start section.
44
-
45
- ## 0.2.0
46
-
47
- 1. Synced with `ts-lib@0.9.0` template.
48
- 2. Switched to `esbuild` for bundling.
49
- 3. Updated Quick Start section to reflect typical usage patterns.
50
- 4. Updated files from self.
51
-
52
- ## 0.1.11
53
-
54
- 1. Synced with `ts-lib@0.8.4` template.
55
-
56
- ## 0.1.10
57
-
58
- 1. Synced with `ts-lib` template.
59
-
60
- ## 0.1.9
61
-
62
- 1. Fixed template assets paths.
63
-
64
- ## 0.1.8
65
-
66
- 1. Updated template files from `ts-lib@0.8.0` template.
67
- 2. Updated files from self.
68
-
69
- ## 0.1.7
70
-
71
- 1. Updated `typescript` to `6.0.3`.
72
- 2. Updated template files from `ts-lib` template.
73
-
74
- ## 0.1.6
75
-
76
- 1. Removed `bun run --watch scripts/dev.ts` from DevOps commands in `README.md` and `template/README.md`.
77
-
78
- ## 0.1.5
79
-
80
- 1. Updated metadata in `package.json` and `template/package.json`.
81
- 2. Added `bun run --watch scripts/dev.ts` to DevOps commands in `README.md` and `template/README.md`.
82
-
83
- ## 0.1.4
84
-
85
- 1. Updated `template/` files from `@temir.ra/ts-lib@0.7.2` template.
86
- 2. Updated the description in `package.json`.
87
-
88
- ## 0.1.3
89
-
90
- 1. Removed `scripts/dev.ts`.
91
-
92
- ## 0.1.2
93
-
94
- 1. Updated `package.json` from `create-ts-lib` template.
95
-
96
- ## 0.1.1
97
-
98
- 1. Added clarifications to `README.md`.
99
-
100
- ## 0.1.0
101
-
102
- 1. First published version.
103
-
104
- ## 0.0.0
105
-
106
- 1. Package created.
1
+ # Version 0
2
+
3
+ ## 0.6.0
4
+
5
+ 1. Updated template files from `ts-lib@0.15.0-pre.4` template.
6
+ 2. Updated from `self` as template.
7
+ 3. Added Build and Publish Workflow.
8
+
9
+ ## 0.5.5
10
+
11
+ 1. Updated template files from `ts-lib@0.14.0-pre.3` template.
12
+
13
+ ## 0.5.4
14
+
15
+ 1. Minor fixes.
16
+
17
+ ## 0.5.0
18
+
19
+ 1. Moved `template/` from package root to `dist/`.
20
+
21
+ ## 0.4.4
22
+
23
+ 1. Synced template files with `ts-lib@0.13.0-pre.7` template.
24
+ 2. Synced files with `self` as template.
25
+
26
+ ## 0.4.3
27
+
28
+ 1. Fixed versioning issue.
29
+
30
+ ## 0.4.2
31
+
32
+ 1. Updated from `ts-lib@0.12.0-pre.1` template.
33
+
34
+ ## 0.4.1
35
+
36
+ 1. Minor updates in the README.
37
+
38
+ ## 0.4.0
39
+
40
+ 1. Synced template files with `ts-lob@0.11.0-pre.11` template.
41
+ 2. Replaced `bun run` with `npmx tsx` in DevOps commands.
42
+ 3. Cleaned up Quick Start section.
43
+ 4. Updated files from self as template.
44
+
45
+ ## 0.3.0
46
+
47
+ 1. Synced template files with `ts-lib@0.10.0-pre.1` template.
48
+ 2. Added `node:` prefix to imports.
49
+ 3. Updated files from `self`.
50
+
51
+ ## 0.2.1
52
+
53
+ 1. Updated Quick Start section.
54
+
55
+ ## 0.2.0
56
+
57
+ 1. Synced with `ts-lib@0.9.0` template.
58
+ 2. Switched to `esbuild` for bundling.
59
+ 3. Updated Quick Start section to reflect typical usage patterns.
60
+ 4. Updated files from self.
61
+
62
+ ## 0.1.11
63
+
64
+ 1. Synced with `ts-lib@0.8.4` template.
65
+
66
+ ## 0.1.10
67
+
68
+ 1. Synced with `ts-lib` template.
69
+
70
+ ## 0.1.9
71
+
72
+ 1. Fixed template assets paths.
73
+
74
+ ## 0.1.8
75
+
76
+ 1. Updated template files from `ts-lib@0.8.0` template.
77
+ 2. Updated files from self.
78
+
79
+ ## 0.1.7
80
+
81
+ 1. Updated `typescript` to `6.0.3`.
82
+ 2. Updated template files from `ts-lib` template.
83
+
84
+ ## 0.1.6
85
+
86
+ 1. Removed `bun run --watch scripts/dev.ts` from DevOps commands in `README.md` and `template/README.md`.
87
+
88
+ ## 0.1.5
89
+
90
+ 1. Updated metadata in `package.json` and `template/package.json`.
91
+ 2. Added `bun run --watch scripts/dev.ts` to DevOps commands in `README.md` and `template/README.md`.
92
+
93
+ ## 0.1.4
94
+
95
+ 1. Updated `template/` files from `@temir.ra/ts-lib@0.7.2` template.
96
+ 2. Updated the description in `package.json`.
97
+
98
+ ## 0.1.3
99
+
100
+ 1. Removed `scripts/dev.ts`.
101
+
102
+ ## 0.1.2
103
+
104
+ 1. Updated `package.json` from `create-ts-lib` template.
105
+
106
+ ## 0.1.1
107
+
108
+ 1. Added clarifications to `README.md`.
109
+
110
+ ## 0.1.0
111
+
112
+ 1. First published version.
113
+
114
+ ## 0.0.0
115
+
116
+ 1. Package created.
@@ -1 +1 @@
1
- 0.5.4+cdce337
1
+ 0.6.0+35a0356
File without changes
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../src/cli.ts", "../src/package-urls.ts"],
4
- "sourcesContent": ["#!/usr/bin/env node\r\n\r\nimport { cpSync, readFileSync, renameSync, writeFileSync } from 'node:fs';\r\nimport { resolve } from 'node:path';\r\nimport {\r\n templateUrl,\r\n changelogUrl,\r\n buildinfoUrl,\r\n readmeUrl\r\n} from './package-urls.js';\r\n\r\n\r\ntry {\r\n\r\n const packageNameArgument = process.argv[2];\r\n if (!packageNameArgument)\r\n throw new Error('First argument must be the package name (e.g. \"my-package\" or \"@my-scope/my-package\").');\r\n const packageName = packageNameArgument.replace(/\\\\/g, '/');\r\n\r\n const destinationPath = resolve(process.cwd(), packageName);\r\n\r\n cpSync(templateUrl, destinationPath, { recursive: true });\r\n cpSync(changelogUrl, resolve(destinationPath, 'CHANGELOG-template.md'));\r\n cpSync(buildinfoUrl, resolve(destinationPath, 'buildinfo-template.txt'));\r\n cpSync(readmeUrl, resolve(destinationPath, 'README-template.md'));\r\n\r\n const packageJsonPath = resolve(destinationPath, 'package.json');\r\n const packageJson = JSON.parse(readFileSync(packageJsonPath, 'utf-8'));\r\n packageJson.name = packageName;\r\n writeFileSync(packageJsonPath, JSON.stringify(packageJson, null, 2));\r\n\r\n renameSync(resolve(destinationPath, 'gitignore'), resolve(destinationPath, '.gitignore'));\r\n\r\n console.log(`Template has been successfully instantiated at '${destinationPath}' with package name '${packageName}'.`);\r\n\r\n}\r\ncatch (error) {\r\n const err = error instanceof Error ? error : new Error(String(error));\r\n console.error('Error:', err.message);\r\n process.exit(1);\r\n}\r\n", "export const packageUrl: URL = new URL('../', import.meta.url);\r\n\r\nexport const distUrl: URL = new URL('dist/', packageUrl);\r\nexport const buildinfoUrl: URL = new URL('buildinfo.txt', distUrl);\r\nexport const changelogUrl: URL = new URL('CHANGELOG.md', distUrl);\r\nexport const readmeUrl: URL = new URL('README.md', packageUrl);\r\n\r\nexport const templateUrl: URL = new URL('template/', distUrl);\r\n"],
4
+ "sourcesContent": ["#!/usr/bin/env node\n\nimport { cpSync, readFileSync, renameSync, writeFileSync } from 'node:fs';\nimport { resolve } from 'node:path';\nimport {\n templateUrl,\n changelogUrl,\n buildinfoUrl,\n readmeUrl\n} from './package-urls.js';\n\n\ntry {\n\n const packageNameArgument = process.argv[2];\n if (!packageNameArgument)\n throw new Error('First argument must be the package name (e.g. \"my-package\" or \"@my-scope/my-package\").');\n const packageName = packageNameArgument.replace(/\\\\/g, '/');\n\n const destinationPath = resolve(process.cwd(), packageName);\n\n cpSync(templateUrl, destinationPath, { recursive: true });\n cpSync(changelogUrl, resolve(destinationPath, 'CHANGELOG-template.md'));\n cpSync(buildinfoUrl, resolve(destinationPath, 'buildinfo-template.txt'));\n cpSync(readmeUrl, resolve(destinationPath, 'README-template.md'));\n\n const packageJsonPath = resolve(destinationPath, 'package.json');\n const packageJson = JSON.parse(readFileSync(packageJsonPath, 'utf-8'));\n packageJson.name = packageName;\n writeFileSync(packageJsonPath, JSON.stringify(packageJson, null, 2));\n\n renameSync(resolve(destinationPath, 'gitignore'), resolve(destinationPath, '.gitignore'));\n\n console.log(`Template has been successfully instantiated at '${destinationPath}' with package name '${packageName}'.`);\n\n}\ncatch (error) {\n const err = error instanceof Error ? error : new Error(String(error));\n console.error('Error:', err.message);\n process.exit(1);\n}\n", "export const packageUrl: URL = new URL('../', import.meta.url);\n\nexport const distUrl: URL = new URL('dist/', packageUrl);\nexport const buildinfoUrl: URL = new URL('buildinfo.txt', distUrl);\nexport const changelogUrl: URL = new URL('CHANGELOG.md', distUrl);\nexport const readmeUrl: URL = new URL('README.md', packageUrl);\n\nexport const templateUrl: URL = new URL('template/', distUrl);\n"],
5
5
  "mappings": ";AAEA,OAAS,UAAAA,EAAQ,gBAAAC,EAAc,cAAAC,EAAY,iBAAAC,MAAqB,UAChE,OAAS,WAAAC,MAAe,YCHjB,IAAMC,EAAkB,IAAI,IAAI,MAAO,YAAY,GAAG,EAEhDC,EAAe,IAAI,IAAI,QAASD,CAAU,EAC1CE,EAAoB,IAAI,IAAI,gBAAiBD,CAAO,EACpDE,EAAoB,IAAI,IAAI,eAAgBF,CAAO,EACnDG,EAAiB,IAAI,IAAI,YAAaJ,CAAU,EAEhDK,EAAmB,IAAI,IAAI,YAAaJ,CAAO,EDK5D,GAAI,CAEA,IAAMK,EAAsB,QAAQ,KAAK,CAAC,EAC1C,GAAI,CAACA,EACD,MAAM,IAAI,MAAM,wFAAwF,EAC5G,IAAMC,EAAcD,EAAoB,QAAQ,MAAO,GAAG,EAEpDE,EAAkBC,EAAQ,QAAQ,IAAI,EAAGF,CAAW,EAE1DG,EAAOC,EAAaH,EAAiB,CAAE,UAAW,EAAK,CAAC,EACxDE,EAAOE,EAAcH,EAAQD,EAAiB,uBAAuB,CAAC,EACtEE,EAAOG,EAAcJ,EAAQD,EAAiB,wBAAwB,CAAC,EACvEE,EAAOI,EAAWL,EAAQD,EAAiB,oBAAoB,CAAC,EAEhE,IAAMO,EAAkBN,EAAQD,EAAiB,cAAc,EACzDQ,EAAc,KAAK,MAAMC,EAAaF,EAAiB,OAAO,CAAC,EACrEC,EAAY,KAAOT,EACnBW,EAAcH,EAAiB,KAAK,UAAUC,EAAa,KAAM,CAAC,CAAC,EAEnEG,EAAWV,EAAQD,EAAiB,WAAW,EAAGC,EAAQD,EAAiB,YAAY,CAAC,EAExF,QAAQ,IAAI,mDAAmDA,CAAe,wBAAwBD,CAAW,IAAI,CAEzH,OACOa,EAAO,CACV,IAAMC,EAAMD,aAAiB,MAAQA,EAAQ,IAAI,MAAM,OAAOA,CAAK,CAAC,EACpE,QAAQ,MAAM,SAAUC,EAAI,OAAO,EACnC,QAAQ,KAAK,CAAC,CAClB",
6
6
  "names": ["cpSync", "readFileSync", "renameSync", "writeFileSync", "resolve", "packageUrl", "distUrl", "buildinfoUrl", "changelogUrl", "readmeUrl", "templateUrl", "packageNameArgument", "packageName", "destinationPath", "resolve", "cpSync", "templateUrl", "changelogUrl", "buildinfoUrl", "readmeUrl", "packageJsonPath", "packageJson", "readFileSync", "writeFileSync", "renameSync", "error", "err"]
7
7
  }
@@ -1,5 +1,5 @@
1
- # Version 0
2
-
3
- ## 0.0.0
4
-
5
- 1. Package created.
1
+ # Version 0
2
+
3
+ ## 0.0.0
4
+
5
+ 1. Package created.