rename org to strudel.cycles

This commit is contained in:
Felix Roos 2022-03-27 21:42:54 +02:00
parent ff4beaeb2c
commit 75097594b2
42 changed files with 140 additions and 140 deletions

View file

@ -1,3 +1,3 @@
# @strudel/tonal
# @strudel.cycles/tonal
This package adds tonal / harmonic functions to strudel Patterns.

View file

@ -1,5 +1,5 @@
{
"name": "@strudel/tonal",
"name": "@strudel.cycles/tonal",
"version": "0.0.1",
"description": "Tonal functions for strudel",
"main": "tonal.mjs",
@ -25,6 +25,6 @@
},
"homepage": "https://github.com/tidalcycles/strudel#readme",
"dependencies": {
"@strudel/core": "*"
"@strudel.cycles/core": "*"
}
}

View file

@ -1,6 +1,6 @@
import { strict as assert } from 'assert';
import '../tonal.mjs'; // need to import this to add prototypes
import { pure } from '@strudel/core/strudel.mjs';
import { pure } from '@strudel.cycles/core/strudel.mjs';
describe('tonal', () => {
it('Should run tonal functions ', () => {

View file

@ -1,6 +1,6 @@
import { Note, Interval, Scale } from '@tonaljs/tonal';
import { Pattern as _Pattern } from '@strudel/core/strudel.mjs';
import { mod } from '@strudel/core/util.mjs';
import { Pattern as _Pattern } from '@strudel.cycles/core/strudel.mjs';
import { mod } from '@strudel.cycles/core/util.mjs';
const Pattern = _Pattern; // as any;

View file

@ -1,4 +1,4 @@
import { Pattern as _Pattern, stack, Hap, reify } from '@strudel/core/strudel.mjs';
import { Pattern as _Pattern, stack, Hap, reify } from '@strudel.cycles/core/strudel.mjs';
import _voicings from 'chord-voicings';
const { dictionaryVoicing, minTopNoteDiff, lefthand } = _voicings.default || _voicings; // parcel module resolution fuckup