diff --git a/package.json b/package.json index a9ab6b4..bc1af2e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@microcks/microcks-testcontainers", - "version": "0.1.1", + "version": "0.1.2", "author": "Laurent Broudoux ", "description": "Node/TypeScript library for Testcontainers that enables embedding Microcks into your unit tests with lightweight, throwaway instance thanks to containers", "bugs": { @@ -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" }, diff --git a/src/index.ts b/src/index.ts index 748f9a0..1795cbc 100644 --- a/src/index.ts +++ b/src/index.ts @@ -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"; \ No newline at end of file +export * from "./microcks-container"; \ No newline at end of file