Skip to content

Commit

Permalink
Release v1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dpilafian committed Jun 19, 2023
1 parent cd135ca commit cffc1cc
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 11 deletions.
1 change: 1 addition & 0 deletions README.md
Expand Up @@ -62,6 +62,7 @@ Even though **esm-to-plain-js** is primarily intended for build scripts, the pac
Example:
``` typescript
import { esmToPlainJs } from 'esm-to-plain-js';

const result = esmToPlainJs.transform('build/web-app.esm.js', 'build/web-app.js');
console.log('Execution time:', result.duration, 'ms');
```
Expand Down
2 changes: 1 addition & 1 deletion dist/esm-to-plain-js.d.ts
@@ -1,4 +1,4 @@
//! esm-to-plain-js v1.0.0 ~~ https://github.com/center-key/esm-to-plain-js ~~ MIT License
//! esm-to-plain-js v1.0.1 ~~ https://github.com/center-key/esm-to-plain-js ~~ MIT License

export type Settings = {
cd: string;
Expand Down
2 changes: 1 addition & 1 deletion dist/esm-to-plain-js.js
@@ -1,4 +1,4 @@
//! esm-to-plain-js v1.0.0 ~~ https://github.com/center-key/esm-to-plain-js ~~ MIT License
//! esm-to-plain-js v1.0.1 ~~ https://github.com/center-key/esm-to-plain-js ~~ MIT License

import fs from 'fs';
import path from 'path';
Expand Down
2 changes: 1 addition & 1 deletion dist/esm-to-plain-js.umd.cjs
@@ -1,4 +1,4 @@
//! esm-to-plain-js v1.0.0 ~~ https://github.com/center-key/esm-to-plain-js ~~ MIT License
//! esm-to-plain-js v1.0.1 ~~ https://github.com/center-key/esm-to-plain-js ~~ MIT License

var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
Expand Down
16 changes: 8 additions & 8 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "esm-to-plain-js",
"version": "1.0.0",
"version": "1.0.1",
"description": "Simplistic string substitution to replace export with a globalThis assignment (CLI tool designed for use in npm scripts)",
"license": "MIT",
"type": "module",
Expand Down Expand Up @@ -79,21 +79,21 @@
"chalk": "~5.2",
"cli-argv-util": "~1.0",
"fancy-log": "~2.0",
"slash": "~5.0"
"slash": "~5.1"
},
"devDependencies": {
"@types/fancy-log": "~2.0",
"@types/node": "~18.15",
"@typescript-eslint/eslint-plugin": "~5.57",
"@typescript-eslint/parser": "~5.57",
"@types/node": "~20.3",
"@typescript-eslint/eslint-plugin": "~5.59",
"@typescript-eslint/parser": "~5.59",
"add-dist-header": "~1.0",
"assert-deep-strict-equal": "~1.0",
"copy-file-util": "~1.0",
"eslint": "~8.37",
"eslint": "~8.43",
"jshint": "~2.13",
"mocha": "~10.2",
"rimraf": "~4.4",
"rimraf": "~5.0",
"run-scripts-util": "~1.1",
"typescript": "~5.0"
"typescript": "~5.1"
}
}

0 comments on commit cffc1cc

Please sign in to comment.