From 3fa93d4631ce795292f1a4617a255123a8461ab5 Mon Sep 17 00:00:00 2001 From: Lachlan Collins <1667261+lachlancollins@users.noreply.github.com> Date: Mon, 20 May 2024 19:15:35 +1000 Subject: [PATCH] Publint angular-table --- packages/angular-table/package.json | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/packages/angular-table/package.json b/packages/angular-table/package.json index d310730f40..1988b80f22 100644 --- a/packages/angular-table/package.json +++ b/packages/angular-table/package.json @@ -21,14 +21,14 @@ "datagrid" ], "type": "module", - "module": "build/lib/esm2022/index.mjs", - "types": "build/lib/index.d.ts", + "module": "dist/esm2022/index.mjs", + "types": "dist/index.d.ts", "exports": { ".": { - "types": "./build/lib/index.d.ts", - "esm": "./build/lib/esm2022/index.mjs", - "esm2022": "./build/lib/esm2022/index.mjs", - "default": "./build/lib/fesm2022/tanstack-angular-table.mjs" + "types": "./dist/index.d.ts", + "esm": "./dist/esm2022/index.mjs", + "esm2022": "./dist/esm2022/index.mjs", + "default": "./dist/fesm2022/tanstack-angular-table.mjs" }, "./package.json": { "default": "./package.json" @@ -38,14 +38,14 @@ "node": ">=12" }, "files": [ - "build/lib/*", + "dist", "src" ], "scripts": { "clean": "rimraf ./dist", - "test:types": "tsc --noEmit", - "build": "pnpm ng-packagr -p ng-package.json && rimraf ./build/lib/package.json", - "build:types": "tsc --emitDeclarationOnly" + "test:types": "tsc", + "test:build": "publint --strict", + "build": "pnpm ng-packagr -p ng-package.json && rimraf ./dist/package.json" }, "dependencies": { "@tanstack/table-core": "workspace:*",