├── .github └── workflows │ ├── build.yml │ └── deploy.yml ├── .gitignore ├── .npmrc ├── LICENSE ├── README.md ├── Signals.svg ├── docs ├── initial-survey.md ├── inline-signal.svg ├── inline-signals-darkmode.svg ├── logo-small.svg └── template-instructions.md ├── meetings └── template.md ├── package.json └── spec.emu /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-signals/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-signals/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-signals/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-signals/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-signals/HEAD/README.md -------------------------------------------------------------------------------- /Signals.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-signals/HEAD/Signals.svg -------------------------------------------------------------------------------- /docs/initial-survey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-signals/HEAD/docs/initial-survey.md -------------------------------------------------------------------------------- /docs/inline-signal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-signals/HEAD/docs/inline-signal.svg -------------------------------------------------------------------------------- /docs/inline-signals-darkmode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-signals/HEAD/docs/inline-signals-darkmode.svg -------------------------------------------------------------------------------- /docs/logo-small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-signals/HEAD/docs/logo-small.svg -------------------------------------------------------------------------------- /docs/template-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-signals/HEAD/docs/template-instructions.md -------------------------------------------------------------------------------- /meetings/template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-signals/HEAD/meetings/template.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-signals/HEAD/package.json -------------------------------------------------------------------------------- /spec.emu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-signals/HEAD/spec.emu --------------------------------------------------------------------------------