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,4 +1,4 @@
# @strudel/eval
# @strudel.cycles/eval
This package contains the strudel code transformer and evaluator.
It allows creating strudel patterns from input code that is optimized for minimal keystrokes and human readability.

View file

@ -1,5 +1,5 @@
import shapeshifter from './shapeshifter.mjs';
import * as strudel from '@strudel/core';
import * as strudel from '@strudel.cycles/core';
const { isPattern } = strudel;

View file

@ -1,11 +1,11 @@
{
"name": "@strudel/eval",
"name": "@strudel.cycles/eval",
"version": "0.0.1",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@strudel/eval",
"name": "@strudel.cycles/eval",
"version": "0.0.1",
"license": "GPL-3.0-or-later",
"dependencies": {

View file

@ -1,5 +1,5 @@
{
"name": "@strudel/eval",
"name": "@strudel.cycles/eval",
"version": "0.0.1",
"description": "Code evaluator for strudel",
"main": "evaluate.mjs",
@ -28,7 +28,7 @@
},
"homepage": "https://github.com/tidalcycles/strudel#readme",
"dependencies": {
"@strudel/core": "*",
"@strudel.cycles/core": "*",
"estraverse": "^5.3.0",
"shift-ast": "^6.1.0",
"shift-codegen": "^7.0.3",

View file

@ -15,7 +15,7 @@ import {
import shiftCodegen from 'shift-codegen';
const codegen = shiftCodegen.default || shiftCodegen; // parcel module resolution fuckup
import * as strudel from '@strudel/core/strudel.mjs';
import * as strudel from '@strudel.cycles/core/strudel.mjs';
const { Pattern } = strudel;

View file

@ -1,7 +1,7 @@
import { strict as assert } from 'assert';
import { evaluate, extend } from '../evaluate.mjs';
import { mini } from '@strudel/mini';
import * as strudel from '@strudel/core';
import { mini } from '@strudel.cycles/mini';
import * as strudel from '@strudel.cycles/core';
const { cat } = strudel;