Skip to content

Commit

Permalink
jsx-renderer module
Browse files Browse the repository at this point in the history
  • Loading branch information
jchip committed Jun 3, 2020
1 parent 94a60ac commit d1d2524
Show file tree
Hide file tree
Showing 125 changed files with 11,778 additions and 0 deletions.
8 changes: 8 additions & 0 deletions packages/xarc-jsx-renderer/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
.nyc_output
coverage
dist
node_modules
# recommend avoid committing package-lock.* file because a module's CI
# should use latest dep, as an app that consumes a module would have its
# own lockfile, but remove this if you want to commit the package lock file.
*-lock*
13 changes: 13 additions & 0 deletions packages/xarc-jsx-renderer/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
Copyright (c) 2016-present, WalmartLabs

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
3 changes: 3 additions & 0 deletions packages/xarc-jsx-renderer/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# @xarc/jsx-renderer

Render your index.html with JSX template with async and concurrent support.
13 changes: 13 additions & 0 deletions packages/xarc-jsx-renderer/babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
module.exports = {
presets: [
[
"@babel/preset-env",
{
targets: {
node: "8",
},
},
],
"@babel/preset-react",
],
};
Loading

0 comments on commit d1d2524

Please sign in to comment.