Skip to content
This repository has been archived by the owner on Jan 25, 2022. It is now read-only.

Commit

Permalink
new spec text
Browse files Browse the repository at this point in the history
New spec text without Nil. Closes #20. Closes #15 .
  • Loading branch information
claudepache committed Jul 29, 2017
1 parent b80761d commit a591f4c
Show file tree
Hide file tree
Showing 3 changed files with 633 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
node_modules/
out/
out-old/
19 changes: 19 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"private": true,
"name": "proposal-optional-chaining",
"version": "1.0.0",
"description": "Optional chaining proposal for ECMAScript",
"scripts": {
"clean": "rm -rf out",
"build": "npm run clean && mkdir out && ecmarkup --verbose spec.html out/index.html --css out/ecmarkup.css --js out/ecmarkup.js",
"watch": "npm run clean && mkdir out && ecmarkup --watch --verbose spec.html out/index.html --css out/ecmarkup.css --js out/ecmarkup.js",
"update-pages": "node node_modules/ecmarkup/bin/ecmarkup.js spec.html _index.html --css _ecmarkup.css --js _ecmarkup.js --verbose && git checkout gh-pages && rm -f index.html ecmarkup.css ecmarkup.js && mv _index.html index.html && mv _ecmarkup.css ecmarkup.css && mv _ecmarkup.js ecmarkup.js && git add index.html ecmarkup.js ecmarkup.css && git commit -m \"update pages\" && git checkout master"
},
"repository": "tc39/proposal-optional-chaining",
"author": "Claude Pache",
"license": "CC0",
"homepage": "https://tc39.github.io/proposal-optional-chaining/",
"dependencies": {
"ecmarkup": "^3.11.5"
}
}
Loading

0 comments on commit a591f4c

Please sign in to comment.