ai-localize-reporting 1.0.0 → 1.0.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.
package/dist/index.d.mts CHANGED
@@ -1,4 +1,4 @@
1
- import { ScanResult, ValidationResult, CloudFrontAsset, Report } from '@ai-localize/shared';
1
+ import { ScanResult, ValidationResult, CloudFrontAsset, Report } from 'ai-localize-shared';
2
2
 
3
3
  interface ReportInput {
4
4
  scanResult: ScanResult;
package/dist/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { ScanResult, ValidationResult, CloudFrontAsset, Report } from '@ai-localize/shared';
1
+ import { ScanResult, ValidationResult, CloudFrontAsset, Report } from 'ai-localize-shared';
2
2
 
3
3
  interface ReportInput {
4
4
  scanResult: ScanResult;
package/dist/index.js CHANGED
@@ -67,9 +67,9 @@ function buildReport(input) {
67
67
  // src/html-reporter.ts
68
68
  var fs = __toESM(require("fs"));
69
69
  var path = __toESM(require("path"));
70
- var import_shared = require("@ai-localize/shared");
70
+ var import_ai_localize_shared = require("ai-localize-shared");
71
71
  function generateHtmlReport(report, outputPath) {
72
- (0, import_shared.ensureDir)(path.dirname(outputPath));
72
+ (0, import_ai_localize_shared.ensureDir)(path.dirname(outputPath));
73
73
  const html = `<!DOCTYPE html>
74
74
  <html lang="en">
75
75
  <head>
package/dist/index.mjs CHANGED
@@ -29,7 +29,7 @@ function buildReport(input) {
29
29
  // src/html-reporter.ts
30
30
  import * as fs from "fs";
31
31
  import * as path from "path";
32
- import { ensureDir } from "@ai-localize/shared";
32
+ import { ensureDir } from "ai-localize-shared";
33
33
  function generateHtmlReport(report, outputPath) {
34
34
  ensureDir(path.dirname(outputPath));
35
35
  const html = `<!DOCTYPE html>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ai-localize-reporting",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Localization scan reporting: JSON, HTML, CLI summary",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -13,7 +13,7 @@
13
13
  }
14
14
  },
15
15
  "dependencies": {
16
- "ai-localize-shared": "1.0.0"
16
+ "ai-localize-shared": "1.0.1"
17
17
  },
18
18
  "devDependencies": {
19
19
  "tsup": "^8.0.1",
@@ -1,4 +1,4 @@
1
- import type { Report } from "@ai-localize/shared";
1
+ import type { Report } from "ai-localize-shared";
2
2
 
3
3
  export function printCliSummary(report: Report): void {
4
4
  const lines = [
@@ -1,7 +1,7 @@
1
- import type { Report } from "@ai-localize/shared";
1
+ import type { Report } from "ai-localize-shared";
2
2
  import * as fs from "fs";
3
3
  import * as path from "path";
4
- import { ensureDir } from "@ai-localize/shared";
4
+ import { ensureDir } from "ai-localize-shared";
5
5
 
6
6
  export function generateHtmlReport(report: Report, outputPath: string): void {
7
7
  ensureDir(path.dirname(outputPath));
@@ -1,4 +1,4 @@
1
- import type { ScanResult, ValidationResult, Report, CloudFrontAsset } from "@ai-localize/shared";
1
+ import type { ScanResult, ValidationResult, Report, CloudFrontAsset } from "ai-localize-shared";
2
2
 
3
3
  export interface ReportInput {
4
4
  scanResult: ScanResult;