Skip to content

Commit 484d010

Browse files
author
Marc-André Rivet
committed
Merge dev + build artifacts
2 parents 6bdb53d + fa43741 commit 484d010

File tree

125 files changed

+77014
-15326
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

125 files changed

+77014
-15326
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ npm-debug*
6767
dash_renderer/
6868
dash_generator_test_component_standard/
6969
dash_generator_test_component_nested/
70-
dash_generator_test_component_sub_nested/
70+
dash_test_components/
7171
inst/
7272
man/
7373
R/
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
include dash_test_components/**
2+
include package.json
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Empty
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
const presets = [
2+
'@babel/preset-env',
3+
'@babel/preset-react'
4+
];
5+
6+
module.exports = { presets };
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
import json
2+
import os as _os
3+
4+
_basepath = _os.path.dirname(__file__)
5+
_filepath = _os.path.abspath(_os.path.join(_basepath, 'package.json'))
6+
with open(_filepath) as f:
7+
package = json.load(f)
8+
9+
package_name = package['name'].replace(' ', '_').replace('-', '_')
10+
__version__ = package['version']
11+
12+
from ._imports_ import * # noqa: F401, F403
13+
from ._imports_ import __all__ # noqa: E402
14+
15+
_js_dist = [
16+
dict(
17+
relative_package_path='dash_test_components.js',
18+
namespace='dash_test_components'
19+
)
20+
]
21+
22+
for _component in __all__:
23+
setattr(locals()[_component], '_js_dist', _js_dist)

0 commit comments

Comments
 (0)