Skip to content

Commit

Permalink
chore: ship as ESM
Browse files Browse the repository at this point in the history
  • Loading branch information
kravetsone committed Nov 7, 2024
1 parent 2a45c36 commit fe0b472
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-gramio",
"version": "1.0.1",
"version": "1.1.0",
"description": "Scaffolding your GramIO project with the environment with easy!",
"keywords": [
"gramio",
Expand All @@ -15,7 +15,7 @@
"drizzle",
"husky"
],
"type": "commonjs",
"type": "module",
"exports": {
".": "./dist/index.js"
},
Expand Down
3 changes: 2 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
import child_process from "node:child_process";
import fs from "node:fs/promises";
import path from "node:path";
import { prompt } from "enquirer";
import pkg from 'enquirer';
const { prompt } = pkg;
import minimist from "minimist";
import task from "tasuku";

Expand Down

0 comments on commit fe0b472

Please sign in to comment.