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
dependancy versions and unpkg.com, having const { booleans, colors, primitives } = require('@jscad/modeling'), or any other dependencies at the top of the file grab the most recent version of the package.
This also could result in scripts braking with breaking changes in new versions of the dependencies.
in their docs is stated that you can specify the version of the script
multifile rojects
for multifile projects this would be solved by package.json
single file projects
maybe make a best practice to encourage people to use the longer exact syntax require('@jscad/[email protected]')??
maybe start new file with require('@jscad/modeling') but when saving offer the user to add exact version that matches current version the script was just executed iwth
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
dependancy versions and unpkg.com, having const { booleans, colors, primitives } = require('@jscad/modeling'), or any other dependencies at the top of the file grab the most recent version of the package.
This also could result in scripts braking with breaking changes in new versions of the dependencies.
in their docs is stated that you can specify the version of the script
multifile rojects
for multifile projects this would be solved by
package.json
single file projects
Beta Was this translation helpful? Give feedback.
All reactions