Skip to content

Commit

Permalink
chore(release): 0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredLunde committed Jul 31, 2020
1 parent 83231ea commit 260c3e7
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 13 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [0.3.1](https://github.com/jaredLunde/snowpack-plugin-mdx/compare/v0.3.0...v0.3.1) (2020-07-31)

### Bug Fixes

- fix React import for snowpack issue 416 ([83231ea](https://github.com/jaredLunde/snowpack-plugin-mdx/commit/83231ea5f7fc6980bb96de33f0085ae1027645d7))

## [0.3.0](https://github.com/jaredLunde/snowpack-plugin-mdx/compare/v0.2.0...v0.3.0) (2020-07-31)

### ⚠ BREAKING CHANGES
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "snowpack-plugin-mdx",
"version": "0.3.0",
"version": "0.3.1",
"homepage": "https://github.com/jaredLunde/snowpack-plugin-mdx#readme",
"repository": "github:jaredLunde/snowpack-plugin-mdx",
"bugs": "https://github.com/jaredLunde/snowpack-plugin-mdx/issues",
Expand Down
16 changes: 4 additions & 12 deletions src/__snapshots__/index.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,16 @@
exports[`snowpack-plugin-mdx should compile .md files: .js 1`] = `
"\\"use strict\\";
function _typeof(obj) { \\"@babel/helpers - typeof\\"; if (typeof Symbol === \\"function\\" && typeof Symbol.iterator === \\"symbol\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\"function\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\"symbol\\" : typeof obj; }; } return _typeof(obj); }
Object.defineProperty(exports, \\"__esModule\\", {
value: true
});
exports[\\"default\\"] = MDXContent;
var React = _interopRequireWildcard(require(\\"react\\"));
var _react = _interopRequireDefault(require(\\"react\\"));
var _react2 = require(\\"@mdx-js/react\\");
function _getRequireWildcardCache() { if (typeof WeakMap !== \\"function\\") return null; var cache = new WeakMap(); _getRequireWildcardCache = function _getRequireWildcardCache() { return cache; }; return cache; }
function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== \\"object\\" && typeof obj !== \\"function\\") { return { \\"default\\": obj }; } var cache = _getRequireWildcardCache(); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj[\\"default\\"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { \\"default\\": obj }; }
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
Expand Down Expand Up @@ -52,20 +48,16 @@ MDXContent.isMDXComponent = true;"
exports[`snowpack-plugin-mdx should compile .mdx files: .js 1`] = `
"\\"use strict\\";
function _typeof(obj) { \\"@babel/helpers - typeof\\"; if (typeof Symbol === \\"function\\" && typeof Symbol.iterator === \\"symbol\\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \\"function\\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \\"symbol\\" : typeof obj; }; } return _typeof(obj); }
Object.defineProperty(exports, \\"__esModule\\", {
value: true
});
exports[\\"default\\"] = MDXContent;
var React = _interopRequireWildcard(require(\\"react\\"));
var _react = _interopRequireDefault(require(\\"react\\"));
var _react2 = require(\\"@mdx-js/react\\");
function _getRequireWildcardCache() { if (typeof WeakMap !== \\"function\\") return null; var cache = new WeakMap(); _getRequireWildcardCache = function _getRequireWildcardCache() { return cache; }; return cache; }
function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== \\"object\\" && typeof obj !== \\"function\\") { return { \\"default\\": obj }; } var cache = _getRequireWildcardCache(); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj[\\"default\\"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { \\"default\\": obj }; }
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
Expand Down

0 comments on commit 260c3e7

Please sign in to comment.