Skip to content
This repository has been archived by the owner on Dec 7, 2019. It is now read-only.

Commit

Permalink
feat: scoped packages
Browse files Browse the repository at this point in the history
BREAKING CHANGE: split packages into scoped packages - fixes #11
  • Loading branch information
elbywan committed Oct 2, 2017
1 parent 76d66dd commit 648d66a
Show file tree
Hide file tree
Showing 179 changed files with 822 additions and 836 deletions.
2 changes: 1 addition & 1 deletion .flowconfig
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
[libs]

[options]
module.name_mapper='^bosket\(.*\)' -> '<PROJECT_ROOT>/src\1'
module.name_mapper='^@bosket\(.*\)' -> '<PROJECT_ROOT>/src\1'
module.name_mapper='^self\(.*\)' -> '<PROJECT_ROOT>/docs\1'
unsafe.enable_getters_and_setters=true
15 changes: 15 additions & 0 deletions build/README.md.hbs
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<p align="center">
<a href="https://elbywan.github.io/bosket/">
<img alt="bosket-logo" src="https://elbywan.github.io/bosket/assets/bosket-logo.png" width="100px"/>
</a>
</p>

----
##### A collection of tree views for front-end frameworks.
----
This is the npm repository for the **@bosket/{{module}}** module of the Bosket library.
For more details, please check out the [Bosket website](https://elbywan.github.io/bosket/) or the [source code repository](https://github.com/elbywan/bosket).
15 changes: 15 additions & 0 deletions build/angular/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<p align="center">
<a href="https://elbywan.github.io/bosket/">
<img alt="bosket-logo" src="https://elbywan.github.io/bosket/assets/bosket-logo.png" width="100px"/>
</a>
</p>

----

##### A collection of tree views for front-end frameworks.

----

This is the npm repository for the **@bosket/angular** module of the Bosket library.

For more details, please check out the [Bosket website](https://elbywan.github.io/bosket/) or the [source code repository](https://github.com/elbywan/bosket).
2 changes: 2 additions & 0 deletions build/angular/bundle/angular.umd.min.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions build/angular/bundle/angular.umd.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/angular/components/TreeView/TreeView.component.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { EventEmitter, ChangeDetectorRef } from "@angular/core";
import { RootNode } from "../../../core";
import { RootNode } from "@bosket/core";
export declare class TreeView<Item extends Object> {
private cdRef;
private _props;
Expand Down
2 changes: 1 addition & 1 deletion build/angular/components/TreeView/TreeView.component.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { ChangeDetectorRef, ComponentFactoryResolver, AfterViewInit } from "@angular/core";
import { ItemInjector } from "./ItemInjector.directive";
import { TreeNode } from "../../../core";
import { TreeNode } from "@bosket/core";
export declare class TreeViewNode<Item extends Object> implements AfterViewInit {
private _cdRef;
private _componentFactoryResolver;
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 648d66a

Please sign in to comment.