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/mini
# @strudel.cycles/mini
This package contains the mini notation parser and pattern generator.

View file

@ -1,6 +1,6 @@
import * as krill from './krill-parser.js';
import * as strudel from '@strudel/core/strudel.mjs';
import { addMiniLocations } from '@strudel/eval/shapeshifter.mjs';
import * as strudel from '@strudel.cycles/core/strudel.mjs';
import { addMiniLocations } from '@strudel.cycles/eval/shapeshifter.mjs';
const { pure, Pattern, Fraction, stack, slowcat, sequence, timeCat, silence, reify } = strudel;

View file

@ -1,5 +1,5 @@
{
"name": "@strudel/mini",
"name": "@strudel.cycles/mini",
"version": "0.0.1",
"description": "Mini notation for strudel",
"main": "mini.mjs",
@ -25,7 +25,7 @@
},
"homepage": "https://github.com/tidalcycles/strudel#readme",
"dependencies": {
"@strudel/tone": "*",
"@strudel/eval": "*"
"@strudel.cycles/tone": "*",
"@strudel.cycles/eval": "*"
}
}

View file

@ -1,6 +1,6 @@
import { strict as assert } from 'assert';
import { mini } from '../mini.mjs';
import '@strudel/core/euclid.mjs';
import '@strudel.cycles/core/euclid.mjs';
describe('mini', () => {
const minV = (v) => mini(v)._firstCycleValues;