@rljson/rljson 0.0.8 → 0.0.9

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.
@@ -17,11 +17,12 @@
17
17
  - [Install GitHub CLI](#install-github-cli)
18
18
  - [Develop](#develop)
19
19
  - [Read architecture doc](#read-architecture-doc)
20
- - [Checkout main](#checkout-main)
21
- - [Create a branch](#create-a-branch)
22
20
  - [Debug](#debug)
23
21
  - [Update goldens](#update-goldens)
24
22
  - [Test and Build](#test-and-build)
23
+ - [Workflow](#workflow)
24
+ - [Checkout main](#checkout-main)
25
+ - [Create a branch](#create-a-branch)
25
26
  - [Commit](#commit)
26
27
  - [Update dependencies](#update-dependencies)
27
28
  - [Increase version](#increase-version)
@@ -108,25 +109,6 @@ gh auth login
108
109
  Read [README.architecture.md](./README.architecture.md) to get an overview
109
110
  of the package's architecture.
110
111
 
111
- ### Checkout main
112
-
113
- ```bash
114
- git checkout main && \
115
- git fetch && \
116
- git pull
117
- ```
118
-
119
- ### Create a branch
120
-
121
- Please replace `Commit Message` in the next command by your commit message.
122
- It will also used for branch name and pull request
123
-
124
- ```bash
125
- export MESSAGE="Add more examples" && \
126
- export BRANCH=`echo "$MESSAGE" | tr '[:upper:]' '[:lower:]' | sed 's/[^a-z0-9_]/_/g'` &&\
127
- git checkout -b $BRANCH
128
- ```
129
-
130
112
  ### Debug
131
113
 
132
114
  In Vscode: At the `left side bar` click on the `Test tube` icon to open the `Test explorer`.
@@ -157,6 +139,29 @@ pnpm test &&\
157
139
  pnpm build
158
140
  ```
159
141
 
142
+ <!-- ........................................................................-->
143
+
144
+ ## Workflow
145
+
146
+ ### Checkout main
147
+
148
+ ```bash
149
+ git checkout main && \
150
+ git fetch && \
151
+ git pull
152
+ ```
153
+
154
+ ### Create a branch
155
+
156
+ Please replace `Commit Message` in the next command by your commit message.
157
+ It will also used for branch name and pull request
158
+
159
+ ```bash
160
+ export MESSAGE="Add package.json tests and fix issues" && \
161
+ export BRANCH=`echo "$MESSAGE" | tr '[:upper:]' '[:lower:]' | sed 's/[^a-z0-9_]/_/g'` &&\
162
+ git checkout -b $BRANCH
163
+ ```
164
+
160
165
  ### Commit
161
166
 
162
167
  Develop your feature
@@ -17,11 +17,12 @@
17
17
  - [Install GitHub CLI](#install-github-cli)
18
18
  - [Develop](#develop)
19
19
  - [Read architecture doc](#read-architecture-doc)
20
- - [Checkout main](#checkout-main)
21
- - [Create a branch](#create-a-branch)
22
20
  - [Debug](#debug)
23
21
  - [Update goldens](#update-goldens)
24
22
  - [Test and Build](#test-and-build)
23
+ - [Workflow](#workflow)
24
+ - [Checkout main](#checkout-main)
25
+ - [Create a branch](#create-a-branch)
25
26
  - [Commit](#commit)
26
27
  - [Update dependencies](#update-dependencies)
27
28
  - [Increase version](#increase-version)
@@ -108,25 +109,6 @@ gh auth login
108
109
  Read [README.architecture.md](./README.architecture.md) to get an overview
109
110
  of the package's architecture.
110
111
 
111
- ### Checkout main
112
-
113
- ```bash
114
- git checkout main && \
115
- git fetch && \
116
- git pull
117
- ```
118
-
119
- ### Create a branch
120
-
121
- Please replace `Commit Message` in the next command by your commit message.
122
- It will also used for branch name and pull request
123
-
124
- ```bash
125
- export MESSAGE="Add more examples" && \
126
- export BRANCH=`echo "$MESSAGE" | tr '[:upper:]' '[:lower:]' | sed 's/[^a-z0-9_]/_/g'` &&\
127
- git checkout -b $BRANCH
128
- ```
129
-
130
112
  ### Debug
131
113
 
132
114
  In Vscode: At the `left side bar` click on the `Test tube` icon to open the `Test explorer`.
@@ -157,6 +139,29 @@ pnpm test &&\
157
139
  pnpm build
158
140
  ```
159
141
 
142
+ <!-- ........................................................................-->
143
+
144
+ ## Workflow
145
+
146
+ ### Checkout main
147
+
148
+ ```bash
149
+ git checkout main && \
150
+ git fetch && \
151
+ git pull
152
+ ```
153
+
154
+ ### Create a branch
155
+
156
+ Please replace `Commit Message` in the next command by your commit message.
157
+ It will also used for branch name and pull request
158
+
159
+ ```bash
160
+ export MESSAGE="Add package.json tests and fix issues" && \
161
+ export BRANCH=`echo "$MESSAGE" | tr '[:upper:]' '[:lower:]' | sed 's/[^a-z0-9_]/_/g'` &&\
162
+ git checkout -b $BRANCH
163
+ ```
164
+
160
165
  ### Commit
161
166
 
162
167
  Develop your feature
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rljson/rljson",
3
- "version": "0.0.8",
3
+ "version": "0.0.9",
4
4
  "packageManager": "pnpm@10.6.2",
5
5
  "description": "The RLJSON data format specification",
6
6
  "homepage": "https://github.com/rljson/rljson",
@@ -14,7 +14,7 @@
14
14
  "type": "git",
15
15
  "url": "git+https://github.com/rljson/rljson.git"
16
16
  },
17
- "main": "dist/index.js",
17
+ "main": "dist/rljson.js",
18
18
  "types": "dist/index.d.ts",
19
19
  "files": [
20
20
  "dist"
@@ -39,6 +39,7 @@
39
39
  "eslint-plugin-tsdoc": "^0.4.0",
40
40
  "globals": "^16.0.0",
41
41
  "jsdoc": "^4.0.4",
42
+ "read-pkg": "^9.0.1",
42
43
  "typescript": "~5.8.2",
43
44
  "typescript-eslint": "^8.26.1",
44
45
  "vite": "^6.2.1",