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
Looking through the scripts in package.json, a lot of the tasks have inconsistent naming or have misleading names
To point out a few issues:
some tasks use kebab-case (e.g. prettier-check) while others use camelCase (e.g. buildApps). We should pick a consistent style. (Personally I find kebab-case easier to type on the command line)
release makes me think ":warning: this is a command to publish the code to some server, use with care! :warning:" when the task just builds the release version of Cesium locally. Perhaps build-release?
The text was updated successfully, but these errors were encountered:
Looking through the scripts in
package.json
, a lot of the tasks have inconsistent naming or have misleading namesTo point out a few issues:
kebab-case
(e.g.prettier-check
) while others usecamelCase
(e.g.buildApps
). We should pick a consistent style. (Personally I findkebab-case
easier to type on the command line)generateDocumentation
seems needlessly long, maybebuild-docs
?release
makes me think ":warning: this is a command to publish the code to some server, use with care! :warning:" when the task just builds the release version of Cesium locally. Perhapsbuild-release
?The text was updated successfully, but these errors were encountered: