fix(tstest): Update deps, fix chrome server route for static bundles, add local tool settings and CI ignore
This commit is contained in:
		
							
								
								
									
										1
									
								
								.serena/.gitignore
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								.serena/.gitignore
									
									
									
									
										vendored
									
									
										Normal file
									
								
							| @@ -0,0 +1 @@ | |||||||
|  | /cache | ||||||
| @@ -1,5 +1,14 @@ | |||||||
| # Changelog | # Changelog | ||||||
|  |  | ||||||
|  | ## 2025-09-03 - 2.3.6 - fix(tstest) | ||||||
|  | Update deps, fix chrome server route for static bundles, add local tool settings and CI ignore | ||||||
|  |  | ||||||
|  | - Bump devDependency @git.zone/tsbuild to ^2.6.8 | ||||||
|  | - Bump dependencies: @api.global/typedserver to ^3.0.78, @push.rocks/smartlog to ^3.1.9, @push.rocks/smartrequest to ^4.3.1 | ||||||
|  | - Fix test server static route in ts/tstest.classes.tstest.ts: replace '(.*)' with '/*splat' so bundled test files are served correctly in Chromium runs | ||||||
|  | - Add .claude/settings.local.json with local permissions for development tasks | ||||||
|  | - Add .serena/.gitignore to ignore /cache | ||||||
|  |  | ||||||
| ## 2025-08-18 - 2.3.5 - fix(core) | ## 2025-08-18 - 2.3.5 - fix(core) | ||||||
| Use SmartRequest with Buffer for binary downloads, tighten static route handling, bump dependencies and add workspace/config files | Use SmartRequest with Buffer for binary downloads, tighten static route handling, bump dependencies and add workspace/config files | ||||||
|  |  | ||||||
|   | |||||||
| @@ -24,11 +24,11 @@ | |||||||
|     "buildDocs": "tsdoc" |     "buildDocs": "tsdoc" | ||||||
|   }, |   }, | ||||||
|   "devDependencies": { |   "devDependencies": { | ||||||
|     "@git.zone/tsbuild": "^2.6.7", |     "@git.zone/tsbuild": "^2.6.8", | ||||||
|     "@types/node": "^22.15.21" |     "@types/node": "^22.15.21" | ||||||
|   }, |   }, | ||||||
|   "dependencies": { |   "dependencies": { | ||||||
|     "@api.global/typedserver": "^3.0.77", |     "@api.global/typedserver": "^3.0.78", | ||||||
|     "@git.zone/tsbundle": "^2.5.1", |     "@git.zone/tsbundle": "^2.5.1", | ||||||
|     "@git.zone/tsrun": "^1.3.3", |     "@git.zone/tsrun": "^1.3.3", | ||||||
|     "@push.rocks/consolecolor": "^2.0.3", |     "@push.rocks/consolecolor": "^2.0.3", | ||||||
| @@ -41,11 +41,11 @@ | |||||||
|     "@push.rocks/smartexpect": "^2.5.0", |     "@push.rocks/smartexpect": "^2.5.0", | ||||||
|     "@push.rocks/smartfile": "^11.2.7", |     "@push.rocks/smartfile": "^11.2.7", | ||||||
|     "@push.rocks/smartjson": "^5.0.20", |     "@push.rocks/smartjson": "^5.0.20", | ||||||
|     "@push.rocks/smartlog": "^3.1.8", |     "@push.rocks/smartlog": "^3.1.9", | ||||||
|     "@push.rocks/smartmongo": "^2.0.12", |     "@push.rocks/smartmongo": "^2.0.12", | ||||||
|     "@push.rocks/smartpath": "^6.0.0", |     "@push.rocks/smartpath": "^6.0.0", | ||||||
|     "@push.rocks/smartpromise": "^4.2.3", |     "@push.rocks/smartpromise": "^4.2.3", | ||||||
|     "@push.rocks/smartrequest": "^4.2.2", |     "@push.rocks/smartrequest": "^4.3.1", | ||||||
|     "@push.rocks/smarts3": "^2.2.6", |     "@push.rocks/smarts3": "^2.2.6", | ||||||
|     "@push.rocks/smartshell": "^3.3.0", |     "@push.rocks/smartshell": "^3.3.0", | ||||||
|     "@push.rocks/smarttime": "^4.1.1", |     "@push.rocks/smarttime": "^4.1.1", | ||||||
|   | |||||||
							
								
								
									
										770
									
								
								pnpm-lock.yaml
									
									
									
										generated
									
									
									
								
							
							
						
						
									
										770
									
								
								pnpm-lock.yaml
									
									
									
										generated
									
									
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							| @@ -3,6 +3,6 @@ | |||||||
|  */ |  */ | ||||||
| export const commitinfo = { | export const commitinfo = { | ||||||
|   name: '@git.zone/tstest', |   name: '@git.zone/tstest', | ||||||
|   version: '2.3.5', |   version: '2.3.6', | ||||||
|   description: 'a test utility to run tests that match test/**/*.ts' |   description: 'a test utility to run tests that match test/**/*.ts' | ||||||
| } | } | ||||||
|   | |||||||
| @@ -352,7 +352,7 @@ import '${absoluteTestFile.replace(/\\/g, '/')}'; | |||||||
|         res.end(); |         res.end(); | ||||||
|       }) |       }) | ||||||
|     ); |     ); | ||||||
|     server.addRoute('(.*)', new plugins.typedserver.servertools.HandlerStatic(tsbundleCacheDirPath)); |     server.addRoute('/*splat', new plugins.typedserver.servertools.HandlerStatic(tsbundleCacheDirPath)); | ||||||
|     await server.start(); |     await server.start(); | ||||||
|  |  | ||||||
|     // lets handle realtime comms |     // lets handle realtime comms | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user