@rip-lang/print 1.1.83 → 1.1.84

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 (2) hide show
  1. package/package.json +1 -1
  2. package/print.rip +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rip-lang/print",
3
- "version": "1.1.83",
3
+ "version": "1.1.84",
4
4
  "description": "Syntax-highlighted source code printer - highlight.js-powered, serves once, auto-opens browser",
5
5
  "type": "module",
6
6
  "main": "print.rip",
package/print.rip CHANGED
@@ -447,7 +447,7 @@ server = Bun.serve
447
447
  port: 9111
448
448
  fetch: ->
449
449
  served = true
450
- new Response html, headers: { 'Content-Type': 'text/html; charset=utf-8' }
450
+ new Response html, headers: { 'Content-Type': 'text/html; charset=utf-8', 'Cache-Control': 'no-store' }
451
451
 
452
452
  console.log "\nOpening browser..."
453
453