Skip to content

Commit c9b339e

Browse files
committed
Do not emit sourcemaps
1 parent 3f46027 commit c9b339e

File tree

2 files changed

+3
-10
lines changed

2 files changed

+3
-10
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "promptl-ai",
3-
"version": "0.6.2",
3+
"version": "0.6.3",
44
"author": "Latitude Data",
55
"license": "MIT",
66
"description": "Compiler for PromptL, the prompt language",

rollup.config.mjs

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,8 @@ export default [
3535
},
3636
input: 'src/index.ts',
3737
output: [
38-
{
39-
file: 'dist/index.js',
40-
sourcemap: true,
41-
},
42-
{
43-
file: 'dist/index.cjs',
44-
format: 'cjs',
45-
sourcemap: true,
46-
},
38+
{ file: 'dist/index.js' },
39+
{ file: 'dist/index.cjs', format: 'cjs' },
4740
],
4841
plugins: [
4942
typescript({

0 commit comments

Comments
 (0)