You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current package.json does not have a prepare step, which means that it is hard for development projects to include a specific branch or commit to their dependencies (as no libraries will be built automatically).
I propose to include:
"prepare": "npm run build && npm run build:types && npm run build:browser && npm run build:esm",
This allows projects to include rdflib as follows in their package.json dependencies:
The current
package.json
does not have aprepare
step, which means that it is hard for development projects to include a specific branch or commit to their dependencies (as no libraries will be built automatically).I propose to include:
This allows projects to include rdflib as follows in their
package.json
dependencies:As per https://docs.npmjs.com/cli/v10/configuring-npm/package-json#git-urls-as-dependencies
The text was updated successfully, but these errors were encountered: