Skip to content

Commit 16c7c39

Browse files
committed
Rename for testing default exports.
1 parent dcd7ccc commit 16c7c39

File tree

3 files changed

+10
-11
lines changed

3 files changed

+10
-11
lines changed

README.md

+3-6
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
1-
# cz-conventional-changelog
1+
# cz-conventional-changelog-default-export
22

3-
Status:
4-
[![npm version](https://img.shields.io/npm/v/cz-conventional-changelog.svg?style=flat-square)](https://www.npmjs.org/package/cz-conventional-changelog)
5-
[![npm downloads](https://img.shields.io/npm/dm/cz-conventional-changelog.svg?style=flat-square)](http://npm-stat.com/charts.html?package=cz-conventional-changelog&from=2015-08-01)
6-
[![Build Status](https://img.shields.io/travis/commitizen/cz-conventional-changelog.svg?style=flat-square)](https://travis-ci.org/commitizen/cz-conventional-changelog)
3+
ONLY FOR E2E TESTING
74

8-
Part of the [commitizen](https://github.com/commitizen/cz-cli) family. Prompts for [conventional changelog](https://github.com/stevemao/conventional-changelog-angular/blob/master/index.js) standard.
5+
You probably want: [cz-conventional-changelog](https://github.com/commitizen/cz-conventional-changelog)

engine.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ var rightPad = require('right-pad');
88
// This can be any kind of SystemJS compatible module.
99
// We use Commonjs here, but ES6 or AMD would do just
1010
// fine.
11-
module.exports = function (options) {
11+
exports['default'] = function (options) {
1212

1313
var types = options.types;
1414

@@ -92,3 +92,5 @@ module.exports = function (options) {
9292
}
9393
};
9494
};
95+
96+
module.exports = exports;

package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
{
2-
"name": "cz-conventional-changelog",
2+
"name": "cz-conventional-changelog-default-export",
33
"version": "0.0.0-semantically-released.0",
4-
"description": "Commitizen adapter following the conventional-changelog format.",
4+
"description": "FOR E2E TESTING ONLY. Commitizen adapter following the conventional-changelog format.",
55
"main": "index.js",
66
"scripts": {
77
"commit": "git-cz",
88
"test": "echo 'Tests need to be setup!'",
99
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
1010
},
11-
"homepage": "https://github.com/commitizen/cz-conventional-changelog",
11+
"homepage": "https://github.com/commitizen/cz-conventional-changelog-default-export",
1212
"repository": {
1313
"type": "git",
14-
"url": "https://github.com/commitizen/cz-conventional-changelog.git"
14+
"url": "https://github.com/commitizen/cz-conventional-changelog-default-export.git"
1515
},
1616
"author": "Jim Cummins <[email protected]>",
1717
"license": "MIT",

0 commit comments

Comments
 (0)