diff --git a/README.md b/README.md index a4fa5cb..dfc6fae 100644 --- a/README.md +++ b/README.md @@ -78,7 +78,7 @@ In order to support typescript, you must pass the `--extensions` used: babel-dual-package --out-dir dist --extensions .ts,.tsx src ``` -If everything worked you should get an ESM build in `dist` and a CJS build in `dist/cjs` with all extensions in the filenames, and `import`/`export` sources updated correctly. +If everything worked you should get an ESM build in `dist` and a CJS build in `dist/cjs` with extensions in filenames and specifiers updated correctly. Now you can add some scripts to your package.json file to help automate the build during CI/CD. diff --git a/package-lock.json b/package-lock.json index b0f4aad..879a6b9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "babel-dual-package", - "version": "1.0.0-rc.5", + "version": "1.0.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "babel-dual-package", - "version": "1.0.0-rc.5", + "version": "1.0.0", "license": "MIT", "dependencies": { "@babel/core": "^7.22.8", diff --git a/package.json b/package.json index 6c60c7f..9c863f7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "babel-dual-package", - "version": "1.0.0-rc.5", + "version": "1.0.0", "description": "CLI for building a dual ESM and CJS package with Babel.", "type": "module", "main": "dist", diff --git a/test/index.js b/test/integration.js similarity index 100% rename from test/index.js rename to test/integration.js