Skip to content

Commit

Permalink
Disable namespacing
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Package is no longer namespaced under
`ReAmqpConnectionManager`. The top-level module `AmqpConnectionManager`
should be used directly.
  • Loading branch information
amsross committed Mar 5, 2020
1 parent 00601ae commit f5ae07b
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
.DS_Store
.bsb.lock
.merlin
/lib/bs/
/lib/js/
/lib
/node_modules/
npm-debug.log
19 changes: 18 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,18 @@
# [amqp-connection-manager](https://www.npmjs.com/package/amqp-connection-manager) (ReasonML) [![npm version](https://badge.fury.io/js/re-amqp-connection-manager.svg)](https://badge.fury.io/js/re-amqp-connection-manager) [![Build Status](https://travis-ci.org/amsross/re-amqp-connection-manager.svg?branch=master)](https://travis-ci.org/amsross/re-amqp-connection-manager)
# [amqp-connection-manager](https://www.npmjs.com/package/amqp-connection-manager) (ReasonML)
[![npm version](https://badge.fury.io/js/re-amqp-connection-manager.svg)](https://badge.fury.io/js/re-amqp-connection-manager) [![Build Status](https://travis-ci.org/amsross/re-amqp-connection-manager.svg?branch=master)](https://travis-ci.org/amsross/re-amqp-connection-manager)

## Installation

Install the project:

`npm install re-amqp-connection-manager --save`

And add the dependency to your bs-dependencies in `bsconfig.json`:

```json
"bs-dependencies": [
"re-amqp-connection-manager"
]
```

The project will be available under the `AmqpConnectionManager` namespace
2 changes: 1 addition & 1 deletion bsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@
"warnings": {
"error" : "+101"
},
"namespace": true,
"namespace": false,
"refmt": 3
}

0 comments on commit f5ae07b

Please sign in to comment.