diff --git a/.gitignore b/.gitignore index 3d42088..088a90c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,13 @@ -.precomp/ -/HTMX-* +.DS_Store +.precomp +.lib/precomp +.swp +.ipynb_checkpoints/* +.log +.p6.swp +.pm6.swp +.Dockerfile.swp +.json.swp +.yaml.swp +.pem +.iml diff --git a/Build.rakumod b/Build.rakumod new file mode 100644 index 0000000..97b0194 --- /dev/null +++ b/Build.rakumod @@ -0,0 +1,18 @@ +use v6.d; + +class Build { + method build($dist-path) { + + #| also specified in en_SI.rakumod + my $rahx = '.rahx-config'; + my $file = 'html5-tags-list.csv'; + + #| mkdir will use existing if present + mkdir "$*HOME/$rahx"; + + copy "resources/$file", "$*HOME/$rahx/$file"; + + exit 0 + } +} + diff --git a/META6.json b/META6.json index a9449d3..280a359 100644 --- a/META6.json +++ b/META6.json @@ -1,25 +1,23 @@ { - "auth": "zef:librasteve", + "name": "HTMX", + "description": "blah blah blah", + "version": "0.0.1", + "perl": "6.d", "authors": [ "librasteve" ], - "build-depends": [ - ], - "depends": [ - ], - "description": "blah blah blah", - "license": "Artistic-2.0", - "name": "HTMX", - "perl": "6.d", + "auth": "zef:librasteve", + "depends": [], + "build-depends": [], + "test-depends": [], "provides": { "HTMX": "lib/HTMX.rakumod" }, "resources": [ + "html5-tags-w3schools.csv", + "html5-tags-list.csv" ], - "source-url": "", - "tags": [ - ], - "test-depends": [ - ], - "version": "0.0.1" -} + "license": "Artistic-2.0", + "tags": [], + "source-url": "" +} \ No newline at end of file diff --git a/README.md b/README.md index 76b5d5f..9ada881 100644 --- a/README.md +++ b/README.md @@ -9,10 +9,13 @@ TODOS #### Minimum Lovable Product (`MLP`) -- [ ] Get a definitive list of HTML tags -- [ ] Export them so that `h1("text")` makes `