syntropylog 0.9.8 → 0.9.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.9.9
4
+
5
+ ### Patch Changes
6
+
7
+ - Build & Packaging: Removed the `./assets` directory from the `files` array in `package.json` to dramatically reduce the package tarball size (saving over 18 MB). Re-linked the README.md logo to use the remote GitHub repository URL.
8
+
3
9
  ## 0.9.8
4
10
 
5
11
  ### Patch Changes
package/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # SyntropyLog
2
2
 
3
3
  <p align="center">
4
- <img src="./assets/beaconLog-2.png" alt="SyntropyLog Logo" width="170"/>
4
+ <img src="https://raw.githubusercontent.com/Syntropysoft/SyntropyLog/main/assets/beaconLog-2.png" alt="SyntropyLog Logo" width="170"/>
5
5
  </p>
6
6
 
7
7
  <h1 align="center">SyntropyLog</h1>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "syntropylog",
3
- "version": "0.9.8",
3
+ "version": "0.9.9",
4
4
  "engines": {
5
5
  "node": ">=20.0.0"
6
6
  },
@@ -117,7 +117,6 @@
117
117
  },
118
118
  "files": [
119
119
  "dist",
120
- "assets",
121
120
  "LICENSE",
122
121
  "README.md",
123
122
  "CHANGELOG.md",
@@ -129,6 +128,37 @@
129
128
  "examples/*",
130
129
  "modules/@syntropylog/types"
131
130
  ],
131
+ "scripts": {
132
+ "example:transport-pool": "npx tsx examples/TransportPoolExample.ts",
133
+ "setup": "node scripts/setup-env.js",
134
+ "build": "npm run clean && npm run build:types && rollup -c",
135
+ "build:types": "tsc -p src/tsconfig.json",
136
+ "dev": "rollup -c -w",
137
+ "clean": "rm -rf dist",
138
+ "lint": "eslint . --fix",
139
+ "format": "prettier --write \"src/**/*.ts\"",
140
+ "test": "vitest --run --reporter=verbose --config vitest.config.mjs",
141
+ "test:coverage": "vitest run --coverage --config vitest.config.mjs",
142
+ "test:integration": "vitest run -c vitest.integration.config.mjs",
143
+ "test:all": "npm test && npm run test:integration",
144
+ "check:deps": "depcheck",
145
+ "prepublishOnly": "npm run build",
146
+ "prepare": "husky",
147
+ "changeset": "changeset",
148
+ "version-packages": "changeset version",
149
+ "release": "npm run build && changeset publish",
150
+ "version:patch": "npm version patch",
151
+ "version:minor": "npm version minor",
152
+ "version:major": "npm version major",
153
+ "version:alpha": "npm version prerelease --preid=alpha",
154
+ "version:beta": "npm version prerelease --preid=beta",
155
+ "version:rc": "npm version prerelease --preid=rc",
156
+ "publish:alpha": "./scripts/release-alpha.sh patch",
157
+ "publish:alpha:minor": "./scripts/release-alpha.sh minor",
158
+ "publish:alpha:major": "./scripts/release-alpha.sh major",
159
+ "publish:stable": "npm run test:all && npm run build && npm publish",
160
+ "release:alpha": "./scripts/release-alpha.sh"
161
+ },
132
162
  "repository": {
133
163
  "type": "git",
134
164
  "url": "git+https://github.com/Syntropysoft/SyntropyLog.git"
@@ -188,34 +218,5 @@
188
218
  },
189
219
  "lint-staged": {
190
220
  "src/**/*.ts": "eslint --fix --max-warnings=0"
191
- },
192
- "scripts": {
193
- "example:transport-pool": "npx tsx examples/TransportPoolExample.ts",
194
- "setup": "node scripts/setup-env.js",
195
- "build": "npm run clean && npm run build:types && rollup -c",
196
- "build:types": "tsc -p src/tsconfig.json",
197
- "dev": "rollup -c -w",
198
- "clean": "rm -rf dist",
199
- "lint": "eslint . --fix",
200
- "format": "prettier --write \"src/**/*.ts\"",
201
- "test": "vitest --run --reporter=verbose --config vitest.config.mjs",
202
- "test:coverage": "vitest run --coverage --config vitest.config.mjs",
203
- "test:integration": "vitest run -c vitest.integration.config.mjs",
204
- "test:all": "npm test && npm run test:integration",
205
- "check:deps": "depcheck",
206
- "changeset": "changeset",
207
- "version-packages": "changeset version",
208
- "release": "npm run build && changeset publish",
209
- "version:patch": "npm version patch",
210
- "version:minor": "npm version minor",
211
- "version:major": "npm version major",
212
- "version:alpha": "npm version prerelease --preid=alpha",
213
- "version:beta": "npm version prerelease --preid=beta",
214
- "version:rc": "npm version prerelease --preid=rc",
215
- "publish:alpha": "./scripts/release-alpha.sh patch",
216
- "publish:alpha:minor": "./scripts/release-alpha.sh minor",
217
- "publish:alpha:major": "./scripts/release-alpha.sh major",
218
- "publish:stable": "npm run test:all && npm run build && npm publish",
219
- "release:alpha": "./scripts/release-alpha.sh"
220
221
  }
221
222
  }
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file