add barrel exports

This commit is contained in:
Felix Roos 2022-05-17 00:22:50 +02:00
parent 999251e137
commit 9fa01aa6ff
9 changed files with 12 additions and 4 deletions

View File

@ -14,4 +14,5 @@ export * from './signal.mjs';
export * from './state.mjs';
export * from './timespan.mjs';
export * from './util.mjs';
export * as gist from './gist.js';
// export * from './value.mjs';

1
packages/midi/index.mjs Normal file
View File

@ -0,0 +1 @@
import './midi.mjs';

View File

@ -2,7 +2,7 @@
"name": "@strudel.cycles/midi",
"version": "0.0.6",
"description": "Midi API for strudel",
"main": "midi.mjs",
"main": "index.mjs",
"repository": {
"type": "git",
"url": "git+https://github.com/tidalcycles/strudel.git"

2
packages/mini/index.mjs Normal file
View File

@ -0,0 +1,2 @@
export * from './mini.mjs';
export * from './krill-parser.js';

View File

@ -2,7 +2,7 @@
"name": "@strudel.cycles/mini",
"version": "0.0.7",
"description": "Mini notation for strudel",
"main": "mini.mjs",
"main": "index.mjs",
"type": "module",
"scripts": {
"test": "mocha --colors"

2
packages/tonal/index.mjs Normal file
View File

@ -0,0 +1,2 @@
import './tonal.mjs';
import './voicings.mjs';

View File

@ -2,7 +2,7 @@
"name": "@strudel.cycles/tonal",
"version": "0.0.5",
"description": "Tonal functions for strudel",
"main": "tonal.mjs",
"main": "index.mjs",
"type": "module",
"scripts": {
"test": "mocha --colors"

2
packages/xen/index.mjs Normal file
View File

@ -0,0 +1,2 @@
import './xen.mjs';
import './tune.mjs';

View File

@ -2,7 +2,7 @@
"name": "@strudel.cycles/xen",
"version": "0.0.5",
"description": "Xenharmonic API for strudel",
"main": "xen.mjs",
"main": "index.mjs",
"scripts": {
"test": "mocha --colors"
},