Skip to content

Commit 3d9216e

Browse files
authored
Merge pull request w3c#789 from majido/master
[css-animationworklet] Migrate wicg/animationworklet repo to css-houdini-drafts
2 parents 37b22ef + 60f243a commit 3d9216e

File tree

10 files changed

+4573
-0
lines changed

10 files changed

+4573
-0
lines changed

css-animationworklet/CONTRIBUTING.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Web Platform Incubator Community Group
2+
3+
This repository is being used for work in the Web Platform Incubator Community Group, governed by the [W3C Community License
4+
Agreement (CLA)](http://www.w3.org/community/about/agreements/cla/). To contribute, you must join
5+
the CG.
6+
7+
If you are not the sole contributor to a contribution (pull request), please identify all
8+
contributors in the pull request's body or in subsequent comments.
9+
10+
To add a contributor (other than yourself, that's automatic), mark them one per line as follows:
11+
12+
```
13+
+@github_username
14+
```
15+
16+
If you added a contributor by mistake, you can remove them in a comment with:
17+
18+
```
19+
-@github_username
20+
```
21+
22+
If you are making a pull request on behalf of someone else but you had no part in designing the
23+
feature, you can remove yourself with the above syntax.

css-animationworklet/LICENSE.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
All Reports in this Repository are licensed by Contributors under the
2+
[W3C Software and Document
3+
License](http://www.w3.org/Consortium/Legal/2015/copyright-software-and-document). Contributions to
4+
Specifications are made under the [W3C CLA](https://www.w3.org/community/about/agreements/cla/).
5+

css-animationworklet/Makefile

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# $Id: Makefile,v 1.5 2008/02/06 14:05:15 mike Exp $
2+
#
3+
# FIXME: New documentation needed.
4+
#
5+
# Use "make REMOTE=1" to use remote bikeshed
6+
7+
SOURCEFILE=index.bs
8+
OUTPUTFILE=index.html
9+
PREPROCESSOR=bikeshed.py
10+
REMOTE_PREPROCESSOR_URL=https://api.csswg.org/bikeshed/
11+
12+
all: $(OUTPUTFILE)
13+
14+
$(OUTPUTFILE): $(SOURCEFILE)
15+
ifneq (,$(REMOTE))
16+
curl $(REMOTE_PREPROCESSOR_URL) -F file=@$(SOURCEFILE) > "$@"
17+
else
18+
$(PREPROCESSOR) -f spec "$<" "$@"
19+
endif
20+

0 commit comments

Comments
 (0)