@agnos-ui/base-po
Advanced tools
Comparing version 0.0.1-alpha.6 to 0.0.1-alpha.7
@@ -14,7 +14,44 @@ { | ||
"scripts": { | ||
"build": "npm run build:rollup && npm run build:dts && npm run build:api-extractor", | ||
"build:rollup": "tsc && vite build", | ||
"build:dts": "tsc -p tsconfig.d.json", | ||
"build:api-extractor": "api-extractor run" | ||
"build": "wireit" | ||
}, | ||
"wireit": { | ||
"build:src": { | ||
"command": "vite build", | ||
"files": [ | ||
"lib/**", | ||
"vite.config.ts" | ||
], | ||
"output": [ | ||
"dist/lib/index.js", | ||
"dist/lib/index.mjs" | ||
] | ||
}, | ||
"build:dts": { | ||
"command": "tsc -p tsconfig.d.json", | ||
"files": [ | ||
"lib/**", | ||
"tsconfig.json", | ||
"tsconfig.d.json" | ||
], | ||
"output": [ | ||
"dist/dts/**" | ||
] | ||
}, | ||
"build": { | ||
"command": "api-extractor run", | ||
"dependencies": [ | ||
"build:src", | ||
"build:dts" | ||
], | ||
"files": [ | ||
"api-extractor.json", | ||
"../api-extractor.json", | ||
"tsconfig.json", | ||
"tsconfig.d.json" | ||
], | ||
"output": [ | ||
"dist/lib/index.d.ts" | ||
] | ||
} | ||
}, | ||
"peerDependencies": { | ||
@@ -33,3 +70,3 @@ "@playwright/test": "*" | ||
}, | ||
"version": "0.0.1-alpha.6" | ||
"version": "0.0.1-alpha.7" | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
10072