@sobird/murph 1.2.0 → 1.3.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.
Files changed (3) hide show
  1. package/README.md +11 -3
  2. package/dist/index.js +1 -1
  3. package/package.json +10 -12
package/README.md CHANGED
@@ -1,5 +1,4 @@
1
1
  # @sobird/murph
2
- A pristine TypeScript template for rapid project inception.
3
2
 
4
3
  [![npm][npm]][npm-url]
5
4
  ![TypeScript][typescript]
@@ -9,6 +8,8 @@ A pristine TypeScript template for rapid project inception.
9
8
  [![License][license]][license-url]
10
9
  [![Install Size][size]][size-url]
11
10
 
11
+ > A pristine TypeScript template for rapid project inception.
12
+
12
13
  ## 🛠️ Step into the Singularity
13
14
 
14
15
  Don't just clone. **Incept.** The fastest way to bootstrap your next pristine project is via `degit`, ensuring zero git history contamination.
@@ -20,6 +21,10 @@ npx degit sobird/murph .
20
21
  # Or, incept in a specific folder
21
22
  npx degit sobird/murph my-new-dimension
22
23
 
24
+ # reset name & version
25
+ cd my-new-dimension
26
+ rm CHANGELOG.md
27
+
23
28
  # Initialize the equation
24
29
  pnpm install
25
30
  ```
@@ -39,15 +44,18 @@ The singularity is maintained through an automated lifecycle:
39
44
  2. **Review**: A release PR is automatically maintained by `release-please`.
40
45
  3. **Ascension**: Upon merging the release PR, the package is built, tested, and published to NPM with an OIDC-authenticated handshake.
41
46
 
42
- <!-- Badges -->
47
+ ## License
43
48
 
49
+ [MIT](./LICENSE) License &copy; 2024 [sobird](https://github.com/sobird)
50
+
51
+ <!-- Badges -->
44
52
  [npm]: https://img.shields.io/npm/v/@sobird/murph.svg?style=flat-square&logo=npm&label=@sobird/murph
45
53
  [npm-url]: https://www.npmjs.com/package/@sobird/murph
46
54
  [build-status]: https://img.shields.io/github/actions/workflow/status/sobird/murph/release.yml?label=CI&logo=github&style=flat-square
47
55
  [build-status-url]: https://github.com/sobird/murph/actions
48
56
  [size]: https://img.shields.io/badge/dynamic/json?style=flat-square&label=mass&query=$.publish.pretty&url=https://packagephobia.com/v2/api.json?p=@sobird/murph&color=blueviolet
49
57
  [size-url]: https://packagephobia.com/result?p=@sobird/murph
50
- [license]: https://img.shields.io/github/license/sobird/murph.svg?style=flat-square
58
+ [license]: https://img.shields.io/github/license/sobird/murph.svg?style=flat-square&v=1
51
59
  [license-url]: https://github.com/sobird/murph/blob/master/LICENSE
52
60
  [typescript]: https://img.shields.io/badge/-TypeScript-3178C6?style=flat-square&logo=typescript&logoColor=white
53
61
  [cli]: https://img.shields.io/badge/-CLI-000000?style=flat-square&logo=gnu-bash
package/dist/index.js CHANGED
@@ -1 +1 @@
1
- var i="@sobird/murph";var e="1.2.0";function s(){console.log(i,e),console.log("A pristine TypeScript singularity.");}s();export{s as murph};
1
+ var i="@sobird/murph";var s="1.3.0";var e="A pristine TypeScript template for rapid project inception.";function c(){console.log(`${i}(${s})`,e);}export{c as murph};
package/package.json CHANGED
@@ -1,8 +1,7 @@
1
1
  {
2
2
  "name": "@sobird/murph",
3
3
  "type": "module",
4
- "version": "1.2.0",
5
- "packageManager": "pnpm@10.30.3",
4
+ "version": "1.3.0",
6
5
  "description": "A pristine TypeScript template for rapid project inception.",
7
6
  "author": "sobird",
8
7
  "license": "MIT",
@@ -26,15 +25,6 @@
26
25
  "engines": {
27
26
  "node": ">=18.0.0"
28
27
  },
29
- "scripts": {
30
- "build": "tsup",
31
- "lint": "eslint",
32
- "lint:fix": "eslint --fix",
33
- "test": "vitest run --passWithNoTests --coverage",
34
- "typecheck": "tsc --noEmit",
35
- "postinstall": "echo \"postinstall\"",
36
- "prepare": "husky"
37
- },
38
28
  "devDependencies": {
39
29
  "@commitlint/cli": "^20.5.0",
40
30
  "@commitlint/config-conventional": "^20.5.0",
@@ -55,5 +45,13 @@
55
45
  "publishConfig": {
56
46
  "registry": "https://registry.npmjs.org/",
57
47
  "access": "public"
48
+ },
49
+ "scripts": {
50
+ "build": "tsup",
51
+ "lint": "eslint",
52
+ "lint:fix": "eslint --fix",
53
+ "test": "vitest run --passWithNoTests --coverage",
54
+ "typecheck": "tsc --noEmit",
55
+ "postinstall": "echo \"postinstall\""
58
56
  }
59
- }
57
+ }