Releases: cineasta-js/cineasta-cli
v1.1.2
- added documentation website link to readme
- fixed the
react-router
version tov3.0.2
-v4
will break things and a new major release is comming to make cineasta work better withreact-router
v4
if you created a new project before this patch, you can fix your project by fixing the react-router
version in your project's package.json
v1.1.1
v1.1.0
- added support to define a list of redux middlewares inside the file
src/config/reduxMiddlewares.js
- fix the
require.context
regex fortakes
andscenes
to get strictly.js
files and never.test.js
|.styles.js
|etc - remove the getFiles filter once the regex to require is fixed
v1.0.0
For this release, we fixed a concept problem, where we discovered that the analogy was a bit wrong, and we improved the make it more coherent with the cinema terms. Now takes are scenes and scenes are takes:
A continuous block of storytelling either set in a single location or following a particular character. The end of a scene is typically marked by a change in location, style, or time.
scene definition from imdb glossary
A single continuous recorded performance of a scene. A director typically orders takes to continue until he or she is satisfied that all of his or her requirements for the scene have been made, be they technical or artistic. For interesting exceptions, see the trivia entries for Stagecoach, The Gold Rush, The Player, Rope, Shi di chu ma, Some Like It Hot, and The Usual Suspects. A continuity report stores the status of each take. Of the ones that don't contain obvious errors, the director will order some to be printed. See also out-take, hold.
take definition from imdb glossasry
changelog
- improve the regex to better exclude
file.anything.js
and use only the correct files forscenes
andtakes
- inverted
scenes
andtakes
- minor template fixes
- generated files don't have an empty first line anymore
- all
scenes
,takes
,components
andcontainers
are now generated with CamellCase file name - make the
Index.js
take
route to/
when only a function is exported withexport default
- support to generating
config/routes.js
file
how to update from 0.X version
- generate a new
routes.js
file by running$ cineasta g routes
- invert
takes
asscenes
dir names - fix import calls
- change
export const take
in the route params toexport const scene
(inside the now calledtake
files)
v0.5.0
v0.4.0
- added support to initializers - now you can import anything global to the entire app inside
src/config/initializers.js
file - added support to providers - wrap the entire app with as many providers as you need by editing the
src/config/providers.js
file or runningcineasta g provider <name>
command. See an example below
import { Provider } from 'react-redux'
import configureStore from 'config/store'
export const reduxProvider = (next) => (
<Provider store={ configureStore() }>
{ next }
</Provider>
)