poml icon indicating copy to clipboard operation
poml copied to clipboard

Broken type depdendencies

Open avivnakar opened this issue 4 months ago • 1 comments

according to the package json:

{
  "name": "pomljs",
  "version": "0.0.7",
  "description": "Prompt Orchestration Markup Language",
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "require": "./dist/index.cjs",
      "types": "./dist/index.d.ts"
    },
    "./package.json": "./package.json"
  },
  "files": [
    "dist"
  ],
}

yet the .d.ts files were not generated properly. UPDATE it's probably about the rollup config. I might make a PR for fixing the config later on

avivnakar avatar Aug 17 '25 07:08 avivnakar

I'm not a typescript expert, and I might have misunderstood -- it might be not how rollup should be used.

Please submit a PR if you are willing to!

ultmaster avatar Aug 17 '25 08:08 ultmaster