Skip to content
This repository was archived by the owner on Nov 27, 2023. It is now read-only.

Commit 8be812f

Browse files
committed
Initial commit
0 parents  commit 8be812f

File tree

9 files changed

+2426
-0
lines changed

9 files changed

+2426
-0
lines changed

.gitattributes

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
index.html -diff merge=ours
2+
spec.js -diff merge=ours
3+
spec.css -diff merge=ours

.github/workflows/build.yml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Deploy spec
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- uses: actions/checkout@v2
11+
- uses: actions/setup-node@v1
12+
with:
13+
node-version: '12.x'
14+
- run: npm install
15+
- run: npm run build
16+
- name: commit changes
17+
uses: elstudio/actions-js-build/commit@v3
18+
with:
19+
commitMessage: "fixup: [spec] `npm run build`"

.gitignore

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
6+
# Runtime data
7+
pids
8+
*.pid
9+
*.seed
10+
11+
# Directory for instrumented libs generated by jscoverage/JSCover
12+
lib-cov
13+
14+
# Coverage directory used by tools like istanbul
15+
coverage
16+
17+
# nyc test coverage
18+
.nyc_output
19+
20+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
21+
.grunt
22+
23+
# node-waf configuration
24+
.lock-wscript
25+
26+
# Compiled binary addons (http://nodejs.org/api/addons.html)
27+
build/Release
28+
29+
# Dependency directories
30+
node_modules
31+
jspm_packages
32+
33+
# Optional npm cache directory
34+
.npm
35+
36+
# Optional REPL history
37+
.node_repl_history
38+
39+
# Only apps should have lockfiles
40+
yarn.lock
41+
package-lock.json
42+
npm-shrinkwrap.json
43+
pnpm-lock.yaml

.npmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
package-lock=false

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2017 ECMA TC39 and contributors
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

+60
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
# template-for-proposals
2+
3+
A repository template for ECMAScript proposals.
4+
5+
## Before creating a proposal
6+
7+
Please ensure the following:
8+
1. You have read the [process document](https://tc39.github.io/process-document/)
9+
1. You have reviewed the [existing proposals](https://github.com/tc39/proposals/)
10+
1. You are aware that your proposal requires being a member of TC39, or locating a TC39 delegate to "champion" your proposal
11+
12+
## Create your proposal repo
13+
14+
Follow these steps:
15+
1. Click the green ["use this template"](https://github.com/tc39/template-for-proposals/generate) button in the repo header. (Note: Do not fork this repo in GitHub's web interface, as that will later prevent transfer into the TC39 organization)
16+
1. Go to your repo settings “Options” page, under “GitHub Pages”, and set the source to the **main branch** under the root (and click Save, if it does not autosave this setting)
17+
1. check "Enforce HTTPS"
18+
1. On "Options", under "Features", Ensure "Issues" is checked, and disable "Wiki", and "Projects" (unless you intend to use Projects)
19+
1. Under "Merge button", check "automatically delete head branches"
20+
<!--
21+
1. Avoid merge conflicts with build process output files by running:
22+
```sh
23+
git config --local --add merge.output.driver true
24+
git config --local --add merge.output.driver true
25+
```
26+
1. Add a post-rewrite git hook to auto-rebuild the output on every commit:
27+
```sh
28+
cp hooks/post-rewrite .git/hooks/post-rewrite
29+
chmod +x .git/hooks/post-rewrite
30+
```
31+
-->
32+
3. ["How to write a good explainer"][explainer] explains how to make a good first impression.
33+
34+
> Each TC39 proposal should have a `README.md` file which explains the purpose
35+
> of the proposal and its shape at a high level.
36+
>
37+
> ...
38+
>
39+
> The rest of this page can be used as a template ...
40+
41+
Your explainer can point readers to the `index.html` generated from `spec.emu`
42+
via markdown like
43+
44+
```markdown
45+
You can browse the [ecmarkup output](https://ACCOUNT.github.io/PROJECT/)
46+
or browse the [source](https://github.com/ACCOUNT/PROJECT/blob/HEAD/spec.emu).
47+
```
48+
49+
where *ACCOUNT* and *PROJECT* are the first two path elements in your project's Github URL.
50+
For example, for github.com/**tc39**/**template-for-proposals**, *ACCOUNT* is "tc39"
51+
and *PROJECT* is "template-for-proposals".
52+
53+
54+
## Maintain your proposal repo
55+
56+
1. Make your changes to `spec.emu` (ecmarkup uses HTML syntax, but is not HTML, so I strongly suggest not naming it ".html")
57+
1. Any commit that makes meaningful changes to the spec, should run `npm run build` and commit the resulting output.
58+
1. Whenever you update `ecmarkup`, run `npm run build` and commit any changes that come from that dependency.
59+
60+
[explainer]: https://github.com/tc39/how-we-work/blob/HEAD/explainer.md

0 commit comments

Comments
 (0)