Skip to content
This repository was archived by the owner on Jan 6, 2024. It is now read-only.

Commit 4a2c1d8

Browse files
committed
Disable esm as @fluent/syntax does not support it
1 parent 462119c commit 4a2c1d8

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

Diff for: package.json

+1-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "fluent-vue-cli",
33
"description": "fluent-vue CLI to manage translation resources",
4-
"version": "3.0.3",
4+
"version": "3.0.4",
55
"author": {
66
"email": "[email protected]",
77
"name": "Ivan Demchuk",
@@ -25,12 +25,7 @@
2525
],
2626
"homepage": "https://github.com/Demivan/fluent-vue-cli",
2727
"license": "MIT",
28-
"exports": {
29-
"require": "./dist/index.js",
30-
"import": "./dist/index.mjs"
31-
},
3228
"main": "dist/index.js",
33-
"module": "dist/index.mjs",
3429
"repository": "Demivan/fluent-vue-cli",
3530
"scripts": {
3631
"build": "tsup",

Diff for: tsup.config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { defineConfig } from 'tsup'
22

33
export default defineConfig({
44
entry: ['src/index.ts', 'src/cli/index.ts'],
5-
format: ['cjs', 'esm'],
5+
format: ['cjs'],
66
splitting: true,
77
clean: true,
88
dts: true,

0 commit comments

Comments
 (0)