Skip to content

Clean up npm package

No issue but the npm package could use a clean up. The package includes the src code of the project. A small .npmignore, package.json and tsconfig.json commit would be nice.

.npmignore:

node_modules/
*.iml
.idea/
coverage/
src/
.eslintrc.js
.gitlab-ci.yaml
.gitlab-ci.yml
.releaserc
.npmrc
package-lock.json
tsconfig.json
vitest.config.ts
sonar-project.properties
dist/tests
dist/**.js.map

tsconfig.json:

{
...
"exclude": ["node_modules", "/**/*.spec.ts", "coverage", "jest.config.js", "commitlint.config.js", "dist", "vitest.config.ts"]
...
}

package.json:

{
...
  "files": [
    "dist/"
  ],
...
}

A small change but could you @ewann1 or someone of the team release that? 🙏🏼