- Updated all component headers and documentation
- Changed navbar and footer branding
- Updated homepage hero badge
- Modified page title in index.html
- Simplified footer text to 'Built with ❤️'
- Consistent V2 capitalization across all references
22 lines
441 B
JavaScript
22 lines
441 B
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.default = void 0;
|
|
|
|
var _helperPluginUtils = require("@babel/helper-plugin-utils");
|
|
|
|
var _default = (0, _helperPluginUtils.declare)(api => {
|
|
api.assertVersion(7);
|
|
return {
|
|
name: "syntax-private-property-in-object",
|
|
|
|
manipulateOptions(opts, parserOpts) {
|
|
parserOpts.plugins.push("privateIn");
|
|
}
|
|
|
|
};
|
|
});
|
|
|
|
exports.default = _default; |