bb-relay 0.0.5 → 0.0.7

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/dist/index.d.mts CHANGED
@@ -495,7 +495,7 @@ interface TutorialHeader {
495
495
  }
496
496
 
497
497
  declare const frFR: {
498
- [key in Language]: ;
498
+ [key in Language]: string;
499
499
  };
500
500
 
501
501
  type Release = {
package/dist/index.d.ts CHANGED
@@ -495,7 +495,7 @@ interface TutorialHeader {
495
495
  }
496
496
 
497
497
  declare const frFR: {
498
- [key in Language]: ;
498
+ [key in Language]: string;
499
499
  };
500
500
 
501
501
  type Release = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bb-relay",
3
- "version": "0.0.5",
3
+ "version": "0.0.7",
4
4
  "description": "For managing bb-editor extension",
5
5
  "license": "ISC",
6
6
  "author": "Ade Adeola",
@@ -17,12 +17,12 @@
17
17
  "style": "./dist/index.css",
18
18
  "types": "./dist/index.d.ts",
19
19
  "import": "./dist/index.mjs",
20
- "require": "./dist/index.cjs"
20
+ "require": "./dist/index.js"
21
21
  },
22
22
  "./dev": {
23
23
  "types": "./dist/dev.d.ts",
24
24
  "import": "./dist/dev.mjs",
25
- "require": "./dist/dev.cjs"
25
+ "require": "./dist/dev.js"
26
26
  }
27
27
  },
28
28
  "scripts": {
@@ -1,6 +1,6 @@
1
1
  import Language from "@/types/editor/Language";
2
2
 
3
- export const frFR: { [key in Language] } = {
3
+ export const frFR: { [key in Language]: string } = {
4
4
  "language.british_english": "Anglais britannique",
5
5
  "language.french": "Français (France)",
6
6
  "file.new": "Nouveau fichier",