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
refactor: convert module syntax to ESM imports and exports
- Replace import X = require('Y') with import X from 'Y'
- Replace export = X with export default X
- Remove 'use strict' directives (ESM is strict by default)
- Keep runtime require() calls for browserify transforms:
template/style require() for stringify transform,
package.json require() for version extraction,
message_keys require() for browserify stub
0 commit comments