Skip to content

Commit

Permalink
progress save
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonyrota committed Oct 13, 2020
1 parent 33489a8 commit d0d70fd
Show file tree
Hide file tree
Showing 136 changed files with 8,627 additions and 3,956 deletions.
25 changes: 21 additions & 4 deletions .cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
"**/coverage/**",
"**/node_modules/**",
"**/dist/**",
"**/**/CHANGELOG.md",
"**/**/CONTRIBUTORS.md",
"docs/api/**",
"**/CHANGELOG.md",
"**/CONTRIBUTORS.md",
"www/public/**",
"www/_files/**"
"www/_files/**",
"**/*.json"
],
"dictionaries": [
"typescript",
Expand All @@ -23,18 +23,26 @@
"ignoreRegExpList": [],
"words": [
"aedoc",
"backticks",
"brotli",
"callbag",
"callbags",
"caniuse",
"closetag",
"commitlint",
"composability",
"crossorigin",
"datacadamia",
"entrypoint",
"etag",
"firebaseapp",
"frontmatter",
"insertable",
"maxage",
"mdast",
"microstream",
"nocheck",
"nodir",
"npmjs",
"oncdataend",
"oncdatastart",
Expand All @@ -45,12 +53,21 @@
"ontext",
"opendir",
"opentag",
"parceljs",
"preact",
"proxying",
"rollupjs",
"spacebar",
"staltz",
"strikethrough",
"tabindex",
"toplevel",
"transpiled",
"tsdoc",
"typeahead",
"typescriptlang",
"unist",
"unsubscription",
"vercel",
"yarnpkg"
],
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ title: 'Bug: '
your issue has not already been fixed.
-->

Awaken version: <!-- -->
MicroStream version: <!-- -->

## Steps To Reproduce

Expand Down
8 changes: 8 additions & 0 deletions .markdownlint.jsonc
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
/* Turn on 80 character line limit. */
"MD013": true,
/* Enable trailing punctuation in headers. */
"MD026": false,
/* Enable HTML in markdown. */
"MD033": false
}
3 changes: 1 addition & 2 deletions .markdownlintignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
node_modules
apiReport
CHANGELOG.md
docs
docs-source
/docs
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Awaken
# MicroStream

A fast and extremely lightweight reactive programming library for Typescript, inspired by [callbags](https://github.com/callbag/callbag) and [RxJS](https://github.com/ReactiveX/rxjs).

Expand Down
4 changes: 2 additions & 2 deletions apiReport/core.api.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## API Report File for "@awaken/core"
## API Report File for "@microstream/core"

> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
Expand Down Expand Up @@ -773,7 +773,7 @@ export interface SubjectDistributionSinkDisposalErrorConstructor {
}

// @public
export function subscribe<T>(sink?: Sink<T>): (source: Source<T>) => void;
export function subscribe<T>(sink?: Sink<T> | ((event: Event_2<T>) => void)): (source: Source<T>) => Sink<T>;

// @public (undocumented)
export const switchEach: <T>(source: Source<Source<T>>) => Source<T>;
Expand Down
14 changes: 7 additions & 7 deletions apiReport/testing.api.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
## API Report File for "@awaken/testing"
## API Report File for "@microstream/testing"

> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
```ts

import { Disposable } from '@awaken/core';
import { End } from '@awaken/core';
import { Event as Event_2 } from '@awaken/core';
import { Push } from '@awaken/core';
import { Source } from '@awaken/core';
import { Throw } from '@awaken/core';
import { Disposable } from '@microstream/core';
import { End } from '@microstream/core';
import { Event as Event_2 } from '@microstream/core';
import { Push } from '@microstream/core';
import { Source } from '@microstream/core';
import { Throw } from '@microstream/core';

// @public (undocumented)
export function E(frame: number): End & {
Expand Down
97 changes: 0 additions & 97 deletions docs-source/introduction.md

This file was deleted.

This file was deleted.

Loading

1 comment on commit d0d70fd

@vercel
Copy link

@vercel vercel bot commented on d0d70fd Oct 13, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.