sourcelib 0.1.0 → 0.1.1

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 (46) hide show
  1. package/{out → lib}/captions/caption-tag-matches.js +1 -1
  2. package/{out → lib}/vmt/shader-param-list.js +3 -3
  3. package/package.json +3 -2
  4. /package/{out → lib}/captions/caption-tag-matches.d.ts +0 -0
  5. /package/{out → lib}/captions/caption-tag-matches.js.map +0 -0
  6. /package/{out → lib}/captions/main.d.ts +0 -0
  7. /package/{out → lib}/captions/main.js +0 -0
  8. /package/{out → lib}/captions/main.js.map +0 -0
  9. /package/{out → lib}/fs/source-fs.d.ts +0 -0
  10. /package/{out → lib}/fs/source-fs.js +0 -0
  11. /package/{out → lib}/fs/source-fs.js.map +0 -0
  12. /package/{out → lib}/kv/main.d.ts +0 -0
  13. /package/{out → lib}/kv/main.js +0 -0
  14. /package/{out → lib}/kv/main.js.map +0 -0
  15. /package/{out → lib}/kv/parser-types.d.ts +0 -0
  16. /package/{out → lib}/kv/parser-types.js +0 -0
  17. /package/{out → lib}/kv/parser-types.js.map +0 -0
  18. /package/{out → lib}/kv/parser.d.ts +0 -0
  19. /package/{out → lib}/kv/parser.js +0 -0
  20. /package/{out → lib}/kv/parser.js.map +0 -0
  21. /package/{out → lib}/kv/serializer.d.ts +0 -0
  22. /package/{out → lib}/kv/serializer.js +0 -0
  23. /package/{out → lib}/kv/serializer.js.map +0 -0
  24. /package/{out → lib}/kv/string-util.d.ts +0 -0
  25. /package/{out → lib}/kv/string-util.js +0 -0
  26. /package/{out → lib}/kv/string-util.js.map +0 -0
  27. /package/{out → lib}/kv/tokenizer.d.ts +0 -0
  28. /package/{out → lib}/kv/tokenizer.js +0 -0
  29. /package/{out → lib}/kv/tokenizer.js.map +0 -0
  30. /package/{out → lib}/main.d.ts +0 -0
  31. /package/{out → lib}/main.js +0 -0
  32. /package/{out → lib}/main.js.map +0 -0
  33. /package/{out → lib}/vmt/color.d.ts +0 -0
  34. /package/{out → lib}/vmt/color.js +0 -0
  35. /package/{out → lib}/vmt/color.js.map +0 -0
  36. /package/{out → lib}/vmt/main.d.ts +0 -0
  37. /package/{out → lib}/vmt/main.js +0 -0
  38. /package/{out → lib}/vmt/main.js.map +0 -0
  39. /package/{out → lib}/vmt/matrix.d.ts +0 -0
  40. /package/{out → lib}/vmt/matrix.js +0 -0
  41. /package/{out → lib}/vmt/matrix.js.map +0 -0
  42. /package/{out → lib}/vmt/shader-param-list.d.ts +0 -0
  43. /package/{out → lib}/vmt/shader-param-list.js.map +0 -0
  44. /package/{out → lib}/vmt/shader-param.d.ts +0 -0
  45. /package/{out → lib}/vmt/shader-param.js +0 -0
  46. /package/{out → lib}/vmt/shader-param.js.map +0 -0
@@ -1,6 +1,6 @@
1
1
  // ==========================================================================
2
2
  // Purpose:
3
- // Reads tag out of captions data for highlighting and other processing
3
+ // Reads tag lib of captions data for highlighting and other processing
4
4
  // ==========================================================================
5
5
  export class ClrTagInfo {
6
6
  constructor(color, start, end) {
@@ -201,14 +201,14 @@ export const shaderParams = [
201
201
  "name": "$decalfadeduration",
202
202
  "type": "float",
203
203
  "wikiUri": "https://developer.valvesoftware.com/wiki/Decals",
204
- "description": "Amount of time to spend fading out. Required `$vertexcolor`"
204
+ "description": "Amount of time to spend fading lib. Required `$vertexcolor`"
205
205
  },
206
206
  {
207
207
  "name": "$decalfadetime",
208
208
  "type": "float",
209
209
  "defaultCompletion": 1,
210
210
  "wikiUri": "https://developer.valvesoftware.com/wiki/Decals",
211
- "description": "Delay before fade out begins"
211
+ "description": "Delay before fade lib begins"
212
212
  },
213
213
  {
214
214
  "name": "$decalsecondpass",
@@ -221,7 +221,7 @@ export const shaderParams = [
221
221
  "name": "$fogscale",
222
222
  "type": "float",
223
223
  "wikiUri": "https://developer.valvesoftware.com/wiki/Decals",
224
- "description": "Scales the amount of fog affecting the decal. Usefog for making important decals stand out in foggy levels."
224
+ "description": "Scales the amount of fog affecting the decal. Usefog for making important decals stand lib in foggy levels."
225
225
  },
226
226
  {
227
227
  "name": "$decaltexture",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sourcelib",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Library for interfacing with source engine files",
5
5
  "repository": {
6
6
  "type": "git",
@@ -9,8 +9,9 @@
9
9
  "license": "MIT",
10
10
  "author": "Stefan Heinz",
11
11
  "type": "module",
12
- "main": "index.js",
12
+ "main": "lib/main.js",
13
13
  "scripts": {
14
+ "prepublish": "npm run build",
14
15
  "build": "tsc -p ./src",
15
16
  "test": "vitest ./tests",
16
17
  "lint": "eslint",
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes