Skip to content
This repository was archived by the owner on Oct 29, 2019. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
0e31b40
[TASK] Add an .codeclimate.yml to the repository
Jul 23, 2015
c90967e
[TASK] Code consistency across all repositories
Jul 23, 2015
cee71af
[FEATURE] First implementation draft of a possible new API.
Jul 23, 2015
1b29bca
[DOC] Delete comment
Jul 23, 2015
2b5e852
[TASK] Integrate the common reduct build-tools
Jul 25, 2015
9e2d655
[TASK] Remove unused files
Jul 25, 2015
54f634f
[TASK] Update npm on travis bevor running the tests
Jul 25, 2015
b842857
[TASK] Set a lower version for JSDom since their latest version only …
Jul 25, 2015
dda27e5
[TASK] Update to the latest build-tools version
Inkdpixels Jul 25, 2015
f37d74f
[TASK] Fix the reference to the Constructor
Jul 26, 2015
1db39c1
[TASK] Update to @reduct/build-tools 0.2.0 and match all test specs t…
Jul 26, 2015
7d31a19
[TASK] Code style consistency with the reduct/build-tools code guidel…
Jul 26, 2015
b078de4
[TASK] Hook the reduct binary into the package scope without installi…
Jul 26, 2015
612339e
[TASK] Remove the new operator since it's use is useless imho
Jul 26, 2015
9434e75
[TASK] Move to the adjusted process title defined by the build-tools
Jul 26, 2015
330e997
[TASK] Update to version 1.0.2 of the build-tools
Inkdpixels Jul 29, 2015
c742294
[TASK] Fix a JSCS style violation in the factory function declaration
Inkdpixels Jul 29, 2015
1ed7eaf
[TASK] Port the tests back to ES5 since the build-tools can't hookup …
Inkdpixels Jul 29, 2015
1830432
[TASK] Revert b842857
Inkdpixels Jul 29, 2015
e0c18e5
[TASK] Always install the latest io.js version on travis ci
Inkdpixels Jul 29, 2015
a684d86
[TASK] API change: `boot` is now `run` #16
Jul 30, 2015
225c49d
[TASK] Happy tests after `build-tools` integration.
Jul 30, 2015
21beebb
[TASK] Update to version 1.1.0 of the @reduct/build-tools
Inkdpixels Jul 30, 2015
0121416
[TASK] Add a missing semicolon
Inkdpixels Jul 30, 2015
56e71cc
[FEATURE] Add possibility for overwriting the component name while re…
Aug 1, 2015
4f0a375
[FEATURE] Add possibility for registering a bunch of Component classe…
Aug 1, 2015
02098ce
[DOC] Source documentation. Closes #15.
Aug 2, 2015
c661d6b
[DOC] README adjustments. Closes #18
Aug 2, 2015
5b89cb0
[TASK] Update to the latest version of the @reduct/build-tools
Inkdpixels Aug 3, 2015
f9abe17
[TASK] Reduce the list of npm tasks
Inkdpixels Aug 3, 2015
6531005
[TASK] Update to the latest version of the @reduct/build-tools
Inkdpixels Aug 3, 2015
acc4e15
[DOCS] Fix some typos in the method documentational blocks
Inkdpixels Aug 3, 2015
67aaed7
[TASK] Updated to version 1.3.0 of the @reduct/build-tools
Inkdpixels Aug 3, 2015
438ffa7
[DOCS] Update the changelog for the 1.0.0
Aug 4, 2015
19eb344
[DOCS] Fix a typo
Aug 4, 2015
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .codeclimate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
engines:
eslint:
enabled: true
ratings:
paths:
- "Src/**"
exclude_paths:
- "Tests/**"
- "Dist/**"
- "Build/**"
13 changes: 8 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,19 @@
language: node_js
node_js:
- 0.10

before_install:
- npm install -g codeclimate-test-reporter
- "iojs"

notifications:
email: true
email: false

cache:
directories:
- node_modules

before_install:
- '[ "${TRAVIS_NODE_VERSION}" != "0.8" ] || npm install -g npm@1.4.28'
- npm install -g npm@latest
- npm install -g codeclimate-test-reporter


after_script:
- node Build/PublishCodeCoverage.js
26 changes: 0 additions & 26 deletions Build/JsHintConfig.json

This file was deleted.

42 changes: 0 additions & 42 deletions Build/KarmaConfig.js

This file was deleted.

27 changes: 0 additions & 27 deletions Build/PublishCodeCoverage.js

This file was deleted.

17 changes: 15 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,23 @@
# Change Log
# Changelog

## 1.0.0
**Implemented enhancements:**
- Wrapped the possibility of batch registration of components into a method.
- Documented all methods via the discussed JSDoc subset.
- The Components are registered automatically with their function name.
- Abstracted the API / Move from the direct connection to 'Component'.
- The componentIndex is not acccesible anymore.
- Added a semver oriented version object enhancement.
- ES2015 rewritten.

## 0.1.2

**Fixed issues:**
- Fixed the general RegExp which matches all words for the 'nonIndexedComponentPolicies' option.
- Fixed the multiple instantiation of the FallBackRule Constructors

## 0.1.1

**Fixed issues:**
- Fixed the execution of the parse method.

Expand All @@ -16,9 +28,10 @@
- Renamed the fallback option to 'nonIndexedComponentPolicies'.

## 0.0.2

**Implemented enhancements:**
- Implement a initialized cache to prevent applying the same constructor on elements which have already been mounted again.
- Moved the contextElement option into the .parse() method for better re-usability of the parser instance.
- Removed unnecessary argument fallbacks in the '_mountComponent' method.

## 1.0.0 (Initial version)
## 0.0.1 (Initial version)
Loading