Skip to content

Commit

Permalink
fix: types were not being published
Browse files Browse the repository at this point in the history
  • Loading branch information
jcayzac committed Aug 17, 2024
1 parent 2e0d30f commit 6f91e65
Show file tree
Hide file tree
Showing 9 changed files with 64 additions and 4 deletions.
12 changes: 12 additions & 0 deletions build.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import { defineBuildConfig } from 'unbuild'

export default defineBuildConfig({
entries: [
'src/index',
],
declaration: true,
clean: true,
rollup: {
emitCJS: false,
},
})
12 changes: 12 additions & 0 deletions packages/shiki-transformer-autolinks/build.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import { defineBuildConfig } from 'unbuild'

export default defineBuildConfig({
entries: [
'src/index',
],
declaration: true,
clean: true,
rollup: {
emitCJS: false,
},
})
2 changes: 1 addition & 1 deletion packages/shiki-transformer-autolinks/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@jcayzac/shiki-transformer-autolinks",
"type": "module",
"version": "0.2.3",
"version": "0.2.4",
"description": "A transformer for Shiki that automatically turns URLs into links.",
"author": "Julien Cayzac",
"license": "MIT",
Expand Down
12 changes: 12 additions & 0 deletions packages/utils-digest/build.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import { defineBuildConfig } from 'unbuild'

export default defineBuildConfig({
entries: [
'src/index',
],
declaration: true,
clean: true,
rollup: {
emitCJS: false,
},
})
2 changes: 1 addition & 1 deletion packages/utils-digest/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@jcayzac/utils-digest",
"type": "module",
"version": "0.1.7",
"version": "0.1.8",
"description": "SHA-256 digest of an Uint8Array or Buffer, as a hexadecimal string.",
"author": "Julien Cayzac",
"license": "MIT",
Expand Down
12 changes: 12 additions & 0 deletions packages/utils-text/build.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import { defineBuildConfig } from 'unbuild'

export default defineBuildConfig({
entries: [
'src/index',
],
declaration: true,
clean: true,
rollup: {
emitCJS: false,
},
})
2 changes: 1 addition & 1 deletion packages/utils-text/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@jcayzac/utils-text",
"type": "module",
"version": "0.2.6",
"version": "0.2.7",
"description": "Small utilities for XML.",
"author": "Julien Cayzac",
"license": "MIT",
Expand Down
12 changes: 12 additions & 0 deletions packages/utils-xml/build.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import { defineBuildConfig } from 'unbuild'

export default defineBuildConfig({
entries: [
'src/index',
],
declaration: true,
clean: true,
rollup: {
emitCJS: false,
},
})
2 changes: 1 addition & 1 deletion packages/utils-xml/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@jcayzac/utils-xml",
"type": "module",
"version": "0.1.5",
"version": "0.1.6",
"description": "Small utilities for XML.",
"author": "Julien Cayzac",
"license": "MIT",
Expand Down

0 comments on commit 6f91e65

Please sign in to comment.