@temperlang/std 0.0.3 → 0.0.4

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/config.js CHANGED
@@ -1,10 +1,33 @@
1
+ /** @type {string} */
1
2
  export const name = "temper-std";
2
3
  ;
3
- export const version = "0.0.3";
4
+ /** @type {string} */
5
+ export const version = "0.0.4";
4
6
  ;
7
+ /** @type {string} */
8
+ export const authors = "Temper Contributors";
9
+ ;
10
+ /** @type {string} */
11
+ export const description = "Optional support library provided with Temper";
12
+ ;
13
+ /** @type {string} */
14
+ export const homepage = "https://temperlang.dev/";
15
+ ;
16
+ /** @type {string} */
5
17
  export const license = "Apache-2.0";
6
18
  ;
19
+ /** @type {string} */
20
+ export const repository = "https://github.com/temper-lang/temper";
21
+ ;
22
+ /** @type {string} */
23
+ export const javaGroup = "dev.temperlang";
24
+ ;
25
+ /** @type {string} */
26
+ export const javaPackage = "temper.std";
27
+ ;
28
+ /** @type {string} */
7
29
  export const jsName = "@temperlang/std";
8
30
  ;
9
- const return_50 = void 0;
10
- export default return_50;
31
+ /** @type {void} */
32
+ const return_369 = void 0;
33
+ export default return_369;
package/config.js.map CHANGED
@@ -1 +1 @@
1
- { "version": 3, "file": "OUTPUT_ROOT/temper-std/js/config.js", "sources": [ "std/config.temper.md" ], "sourcesContent": [ "# Temper Standard Library\n\n```temper ;lit\nexport let name = \u0022temper-std\u0022;\nexport let version = \u00220.0.3\u0022;\nexport let license = \u0022Apache-2.0\u0022;\n\nimport(\u0022./regex.temper.md\u0022);\nimport(\u0022./testing.temper.md\u0022);\n\nexport let jsName = \u0022@temperlang/std\u0022;\n```\n" ], "names": [ "name", "version", "license", "jsName", "return" ], "mappings": "AAGO,YAAI,CAAAA,IAAI,EAAG,aAAY;AAAA;AACvB,YAAI,CAAAC,OAAO,EAAG,QAAO;AAAA;AACrB,YAAI,CAAAC,OAAO,EAAG,aAAY;AAAA;AAK1B,YAAI,CAAAC,MAAM,EAAG,kBAAiB;AAAA,CAAA;AAPrC,MAAAC,SAAA,EAOqC,OAAA,AAPrC;AAOsC,eAAAA,SAAA" }
1
+ { "version": 3, "file": "OUTPUT_ROOT/temper-std/js/config.js", "sources": [ "std/config.temper.md" ], "sourcesContent": [ "# Temper Standard Library\n\nThis library holds code that we distribute with Temper but which can be broken\nout from core builtins and also implemented primarily in the Temper language.\n\n export let name = \u0022temper-std\u0022;\n export let version = \u00220.0.4\u0022;\n\n## Metadata\n\n export let authors = \u0022Temper Contributors\u0022;\n export let description = \u0022Optional support library provided with Temper\u0022;\n export let homepage = \u0022https://temperlang.dev/\u0022;\n export let license = \u0022Apache-2.0\u0022;\n export let repository = \u0022https://github.com/temper-lang/temper\u0022;\n\n## Imports\n\nWe might break these out into separate libraries in the future.\n\n import(\u0022./regex.temper.md\u0022);\n import(\u0022./testing.temper.md\u0022);\n\n## Java\n\nWe've chosen to use `temper` as a package prefix for official Temper packages,\nbut to conform to Maven standards, we use a reverse owned domain name for the\ngroup ID.\n\n export let javaGroup = \u0022dev.temperlang\u0022;\n export let javaPackage = \u0022temper.std\u0022;\n\n## JS\n\n export let jsName = \u0022@temperlang/std\u0022;\n" ], "names": [ "name", "version", "authors", "description", "homepage", "license", "repository", "javaGroup", "javaPackage", "jsName", "return" ], "mappings": "AAKe;AAAI,MAAA,AAAR,MAAI,CAAAA,IAAI,EAAG,aAAY;AAAA;AACnB;AAAO,MAAA,AAAX,MAAI,CAAAC,OAAO,EAAG,QAAO;AAAA;AAIjB;AAAO,MAAA,AAAX,MAAI,CAAAC,OAAO,EAAG,sBAAqB;AAAA;AAC/B;AAAW,MAAA,AAAf,MAAI,CAAAC,WAAW,EAAG,gDAA+C;AAAA;AAC7D;AAAQ,MAAA,AAAZ,MAAI,CAAAC,QAAQ,EAAG,0BAAyB;AAAA;AACpC;AAAO,MAAA,AAAX,MAAI,CAAAC,OAAO,EAAG,aAAY;AAAA;AACtB;AAAU,MAAA,AAAd,MAAI,CAAAC,UAAU,EAAG,wCAAuC;AAAA;AAepD;AAAS,MAAA,AAAb,MAAI,CAAAC,SAAS,EAAG,iBAAgB;AAAA;AAC5B;AAAW,MAAA,AAAf,MAAI,CAAAC,WAAW,EAAG,aAAY;AAAA;AAI1B;AAAM,MAAA,AAAV,MAAI,CAAAC,MAAM,EAAG,kBAAiB;AAAA,CAAA;AA7BrC;AAAA,MAAAC,UAAA,EA6BqC,OAAA,AA7BrC;AA6BsC,eAAAA,UAAA" }
package/package.json CHANGED
@@ -1,9 +1,12 @@
1
1
  {
2
2
  "name": "@temperlang/std",
3
- "version": "0.0.3",
3
+ "version": "0.0.4",
4
+ "author": "Temper Contributors",
5
+ "description": "Optional support library provided with Temper",
6
+ "homepage": "https://temperlang.dev/",
4
7
  "license": "Apache-2.0",
5
8
  "type": "module",
6
9
  "dependencies": {
7
- "@temperlang/core": "0.0.3"
10
+ "@temperlang/core": "0.0.4"
8
11
  }
9
12
  }