Skip to content

Commit

Permalink
fix: #3 Generalize exports and point to the correct js as main file
Browse files Browse the repository at this point in the history
Signed-off-by: Laurent Broudoux <[email protected]>
  • Loading branch information
lbroudoux committed Oct 6, 2023
1 parent edb10ec commit ef12242
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@microcks/microcks-testcontainers",
"version": "0.1.1",
"version": "0.1.2",
"author": "Laurent Broudoux <[email protected]>",
"description": "Node/TypeScript library for Testcontainers that enables embedding Microcks into your unit tests with lightweight, throwaway instance thanks to containers",
"bugs": {
Expand All @@ -12,7 +12,7 @@
"url": "git+https://github.com/microcks/microcks-testcontainers-node.git"
},
"license": "Apache-2.0",
"main": "src/index.ts",
"main": "build/index.js",
"publishConfig": {
"access": "public"
},
Expand Down
4 changes: 1 addition & 3 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,4 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
export { MicrocksContainer, StartedMicrocksContainer,
TestRequest, SecretRef, TestRunnerType,
TestResult, TestCaseResult, TestStepResult } from "./microcks-container";
export * from "./microcks-container";

0 comments on commit ef12242

Please sign in to comment.