@lokalise/translation-storage-api-schemas 13.7.1 → 13.8.0
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/feature-flags.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export declare const TASK_CREATION_FEATURE_FLAG = "ap_metro_feature_automatic_task_creation";
|
|
2
2
|
export declare const ASSETS_PANEL_FEATURE_FLAG = "ap_feature_assets_panel";
|
|
3
3
|
export declare const TASK_DUE_DATES_FEATURE_FLAG = "ap_metro_feature_task_due_dates";
|
|
4
|
+
export declare const MARKDOWN_HTML_PREVIEW_FEATURE_FLAG = "ap_feature_markdown_html_preview";
|
|
4
5
|
//# sourceMappingURL=feature-flags.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"feature-flags.d.ts","sourceRoot":"","sources":["../src/feature-flags.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,0BAA0B,6CAA6C,CAAA;AACpF,eAAO,MAAM,yBAAyB,4BAA4B,CAAA;AAClE,eAAO,MAAM,2BAA2B,oCAAoC,CAAA"}
|
|
1
|
+
{"version":3,"file":"feature-flags.d.ts","sourceRoot":"","sources":["../src/feature-flags.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,0BAA0B,6CAA6C,CAAA;AACpF,eAAO,MAAM,yBAAyB,4BAA4B,CAAA;AAClE,eAAO,MAAM,2BAA2B,oCAAoC,CAAA;AAC5E,eAAO,MAAM,kCAAkC,qCAAqC,CAAA"}
|
package/dist/feature-flags.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export const TASK_CREATION_FEATURE_FLAG = 'ap_metro_feature_automatic_task_creation';
|
|
2
2
|
export const ASSETS_PANEL_FEATURE_FLAG = 'ap_feature_assets_panel';
|
|
3
3
|
export const TASK_DUE_DATES_FEATURE_FLAG = 'ap_metro_feature_task_due_dates';
|
|
4
|
+
export const MARKDOWN_HTML_PREVIEW_FEATURE_FLAG = 'ap_feature_markdown_html_preview';
|
|
4
5
|
//# sourceMappingURL=feature-flags.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"feature-flags.js","sourceRoot":"","sources":["../src/feature-flags.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,0BAA0B,GAAG,0CAA0C,CAAA;AACpF,MAAM,CAAC,MAAM,yBAAyB,GAAG,yBAAyB,CAAA;AAClE,MAAM,CAAC,MAAM,2BAA2B,GAAG,iCAAiC,CAAA"}
|
|
1
|
+
{"version":3,"file":"feature-flags.js","sourceRoot":"","sources":["../src/feature-flags.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,0BAA0B,GAAG,0CAA0C,CAAA;AACpF,MAAM,CAAC,MAAM,yBAAyB,GAAG,yBAAyB,CAAA;AAClE,MAAM,CAAC,MAAM,2BAA2B,GAAG,iCAAiC,CAAA;AAC5E,MAAM,CAAC,MAAM,kCAAkC,GAAG,kCAAkC,CAAA"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lokalise/translation-storage-api-schemas",
|
|
3
|
-
"version": "13.
|
|
3
|
+
"version": "13.8.0",
|
|
4
4
|
"files": [
|
|
5
5
|
"dist"
|
|
6
6
|
],
|
|
@@ -22,18 +22,18 @@
|
|
|
22
22
|
"devDependencies": {
|
|
23
23
|
"@biomejs/biome": "^2.4.2",
|
|
24
24
|
"@lokalise/biome-config": "^3.1.1",
|
|
25
|
-
"@lokalise/tsconfig": "^
|
|
25
|
+
"@lokalise/tsconfig": "^5.0.0",
|
|
26
26
|
"@lokalise/zod-extras": "^3.0.2",
|
|
27
|
-
"
|
|
28
|
-
"
|
|
27
|
+
"rimraf": "^6.0.1",
|
|
28
|
+
"typescript": "7.0.2"
|
|
29
29
|
},
|
|
30
30
|
"peerDependencies": {
|
|
31
31
|
"zod": "^4.4.3"
|
|
32
32
|
},
|
|
33
33
|
"scripts": {
|
|
34
|
-
"build": "rimraf dist &&
|
|
34
|
+
"build": "rimraf dist && tsc --project tsconfig.build.json",
|
|
35
35
|
"clean": "rimraf dist",
|
|
36
|
-
"lint": "biome check . &&
|
|
36
|
+
"lint": "biome check . && tsc",
|
|
37
37
|
"lint:fix": "biome check --write",
|
|
38
38
|
"package-version": "echo $npm_package_version",
|
|
39
39
|
"postversion": "biome check --write package.json"
|