forked from thi-ng/umbrella
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request thi-ng#326 from ja0nz/feature/yarn3
build: migrate to the new version of yarn
- Loading branch information
Showing
496 changed files
with
17,657 additions
and
11,974 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,4 +21,5 @@ jobs: | |
- uses: actions/setup-node@v1 | ||
with: | ||
node-version: ">=16.9.0" | ||
- run: yarn install | ||
- run: yarn test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
nodeLinker: node-modules | ||
|
||
nmMode: "hardlinks-global" | ||
|
||
npmRegistryServer: "https://registry.npmjs.org" | ||
|
||
plugins: | ||
- path: .yarn/plugins/@yarnpkg/plugin-typescript.cjs | ||
spec: "@yarnpkg/plugin-typescript" | ||
- path: .yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs | ||
spec: "@yarnpkg/plugin-workspace-tools" | ||
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs | ||
spec: "@yarnpkg/plugin-interactive-tools" | ||
|
||
yarnPath: .yarn/releases/yarn-3.1.0.cjs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,23 @@ | ||
{ | ||
"name": "adaptive-threshold", | ||
"private": true, | ||
"version": "0.0.1", | ||
"description": "Interactive image processing (adaptive threshold)", | ||
"repository": "https://github.com/thi-ng/umbrella", | ||
"author": "Karsten Schmidt <[email protected]>", | ||
"license": "Apache-2.0", | ||
"scripts": { | ||
"clean": "../../node_modules/.bin/rimraf build node_modules/.cache", | ||
"start": "../../node_modules/.bin/snowpack dev --reload", | ||
"build": "yarn clean && ../../node_modules/.bin/snowpack build" | ||
"clean": "rimraf build node_modules/.cache", | ||
"start": "snowpack dev --reload", | ||
"build": "yarn clean && snowpack build" | ||
}, | ||
"dependencies": { | ||
"@thi.ng/api": "latest", | ||
"@thi.ng/paths": "latest", | ||
"@thi.ng/pixel": "latest", | ||
"@thi.ng/rstream": "latest", | ||
"@thi.ng/transducers": "latest", | ||
"@thi.ng/transducers-hdom": "latest" | ||
"@thi.ng/api": "workspace:^", | ||
"@thi.ng/paths": "workspace:^", | ||
"@thi.ng/pixel": "workspace:^", | ||
"@thi.ng/rstream": "workspace:^", | ||
"@thi.ng/transducers": "workspace:^", | ||
"@thi.ng/transducers-hdom": "workspace:^" | ||
}, | ||
"browserslist": [ | ||
"last 3 Chrome versions" | ||
|
@@ -36,6 +37,8 @@ | |
"screenshot": "examples/adaptive-threshold.png" | ||
}, | ||
"devDependencies": { | ||
"@types/snowpack-env": "^2.3.3" | ||
"@types/snowpack-env": "^2.3.3", | ||
"rimraf": "^3.0.2", | ||
"snowpack": "^3.8.8" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,20 @@ | ||
{ | ||
"name": "async-effect", | ||
"private": true, | ||
"version": "0.0.1", | ||
"description": "Minimal demo using interceptors with an async side effect", | ||
"repository": "https://github.com/thi-ng/umbrella", | ||
"author": "Karsten Schmidt <[email protected]>", | ||
"license": "Apache-2.0", | ||
"scripts": { | ||
"clean": "../../node_modules/.bin/rimraf build node_modules/.cache", | ||
"start": "../../node_modules/.bin/snowpack dev --reload", | ||
"build": "yarn clean && ../../node_modules/.bin/snowpack build" | ||
"clean": "rimraf build node_modules/.cache", | ||
"start": "snowpack dev --reload", | ||
"build": "yarn clean && snowpack build" | ||
}, | ||
"dependencies": { | ||
"@thi.ng/api": "latest", | ||
"@thi.ng/hdom": "latest", | ||
"@thi.ng/interceptors": "latest" | ||
"@thi.ng/api": "workspace:^", | ||
"@thi.ng/hdom": "workspace:^", | ||
"@thi.ng/interceptors": "workspace:^" | ||
}, | ||
"browserslist": [ | ||
"last 3 Chrome versions" | ||
|
@@ -29,6 +30,8 @@ | |
] | ||
}, | ||
"devDependencies": { | ||
"@types/snowpack-env": "^2.3.3" | ||
"@types/snowpack-env": "^2.3.3", | ||
"rimraf": "^3.0.2", | ||
"snowpack": "^3.8.8" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,24 @@ | ||
{ | ||
"name": "bitmap-font", | ||
"private": true, | ||
"version": "0.0.1", | ||
"description": "Figlet-style bitmap font creation with transducers", | ||
"repository": "https://github.com/thi-ng/umbrella", | ||
"author": "Karsten Schmidt <[email protected]>", | ||
"license": "Apache-2.0", | ||
"scripts": { | ||
"clean": "../../node_modules/.bin/rimraf build node_modules/.cache", | ||
"start": "../../node_modules/.bin/snowpack dev --reload", | ||
"build": "yarn clean && ../../node_modules/.bin/snowpack build" | ||
"clean": "rimraf build node_modules/.cache", | ||
"start": "snowpack dev --reload", | ||
"build": "yarn clean && snowpack build" | ||
}, | ||
"dependencies": { | ||
"@thi.ng/api": "latest", | ||
"@thi.ng/hdom-components": "latest", | ||
"@thi.ng/math": "latest", | ||
"@thi.ng/rstream": "latest", | ||
"@thi.ng/transducers": "latest", | ||
"@thi.ng/transducers-binary": "latest", | ||
"@thi.ng/transducers-hdom": "latest" | ||
"@thi.ng/api": "workspace:^", | ||
"@thi.ng/hdom-components": "workspace:^", | ||
"@thi.ng/math": "workspace:^", | ||
"@thi.ng/rstream": "workspace:^", | ||
"@thi.ng/transducers": "workspace:^", | ||
"@thi.ng/transducers-binary": "workspace:^", | ||
"@thi.ng/transducers-hdom": "workspace:^" | ||
}, | ||
"browserslist": [ | ||
"last 3 Chrome versions" | ||
|
@@ -38,6 +39,8 @@ | |
"screenshot": "examples/bitmap-font.gif" | ||
}, | ||
"devDependencies": { | ||
"@types/snowpack-env": "^2.3.3" | ||
"@types/snowpack-env": "^2.3.3", | ||
"rimraf": "^3.0.2", | ||
"snowpack": "^3.8.8" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,28 @@ | ||
{ | ||
"name": "canvas-dial", | ||
"private": true, | ||
"version": "0.0.1", | ||
"description": "Canvas based dial widget", | ||
"repository": "https://github.com/thi-ng/umbrella", | ||
"author": "Karsten Schmidt <[email protected]>", | ||
"license": "Apache-2.0", | ||
"scripts": { | ||
"clean": "../../node_modules/.bin/rimraf build node_modules/.cache", | ||
"start": "../../node_modules/.bin/snowpack dev --reload", | ||
"build": "yarn clean && ../../node_modules/.bin/snowpack build" | ||
"clean": "rimraf build node_modules/.cache", | ||
"start": "snowpack dev --reload", | ||
"build": "yarn clean && snowpack build" | ||
}, | ||
"dependencies": { | ||
"@thi.ng/api": "latest", | ||
"@thi.ng/arrays": "latest", | ||
"@thi.ng/checks": "latest", | ||
"@thi.ng/hdom-components": "latest", | ||
"@thi.ng/math": "latest", | ||
"@thi.ng/rstream": "latest", | ||
"@thi.ng/rstream-gestures": "latest", | ||
"@thi.ng/strings": "latest", | ||
"@thi.ng/transducers": "latest", | ||
"@thi.ng/transducers-hdom": "latest", | ||
"@thi.ng/vectors": "latest" | ||
"@thi.ng/api": "workspace:^", | ||
"@thi.ng/arrays": "workspace:^", | ||
"@thi.ng/checks": "workspace:^", | ||
"@thi.ng/hdom-components": "workspace:^", | ||
"@thi.ng/math": "workspace:^", | ||
"@thi.ng/rstream": "workspace:^", | ||
"@thi.ng/rstream-gestures": "workspace:^", | ||
"@thi.ng/strings": "workspace:^", | ||
"@thi.ng/transducers": "workspace:^", | ||
"@thi.ng/transducers-hdom": "workspace:^", | ||
"@thi.ng/vectors": "workspace:^" | ||
}, | ||
"browserslist": [ | ||
"last 3 Chrome versions" | ||
|
@@ -42,6 +43,8 @@ | |
"screenshot": "examples/canvas-dial.png" | ||
}, | ||
"devDependencies": { | ||
"@types/snowpack-env": "^2.3.3" | ||
"@types/snowpack-env": "^2.3.3", | ||
"rimraf": "^3.0.2", | ||
"snowpack": "^3.8.8" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,21 @@ | ||
{ | ||
"name": "cellular-automata", | ||
"private": true, | ||
"version": "0.0.1", | ||
"description": "2D transducer based cellular automata", | ||
"repository": "https://github.com/thi-ng/umbrella", | ||
"author": "Karsten Schmidt <[email protected]>", | ||
"license": "Apache-2.0", | ||
"scripts": { | ||
"clean": "../../node_modules/.bin/rimraf build node_modules/.cache", | ||
"start": "../../node_modules/.bin/snowpack dev --reload", | ||
"build": "yarn clean && ../../node_modules/.bin/snowpack build" | ||
"clean": "rimraf build node_modules/.cache", | ||
"start": "snowpack dev --reload", | ||
"build": "yarn clean && snowpack build" | ||
}, | ||
"dependencies": { | ||
"@thi.ng/hdom": "latest", | ||
"@thi.ng/hdom-components": "latest", | ||
"@thi.ng/transducers": "latest", | ||
"@thi.ng/transducers-binary": "latest" | ||
"@thi.ng/hdom": "workspace:^", | ||
"@thi.ng/hdom-components": "workspace:^", | ||
"@thi.ng/transducers": "workspace:^", | ||
"@thi.ng/transducers-binary": "workspace:^" | ||
}, | ||
"browserslist": [ | ||
"last 3 Chrome versions" | ||
|
@@ -34,6 +35,8 @@ | |
"screenshot": "examples/cellular-automata.png" | ||
}, | ||
"devDependencies": { | ||
"@types/snowpack-env": "^2.3.3" | ||
"@types/snowpack-env": "^2.3.3", | ||
"rimraf": "^3.0.2", | ||
"snowpack": "^3.8.8" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.