This repository has been archived by the owner on Apr 5, 2022. It is now read-only.
Releases: StoryCloud/webkit-assign
Releases · StoryCloud/webkit-assign
v1.4.1
v1.4.0
- Fix parsing of empty expressions like the first element of
[,0]
. - Fix bug where a (duplicate) variable was created for each instance of a property name.
- Add webpack loader.
- Add extension filtering for the browserify transform (via the
extension
option).
v1.3.0
- Add Browserify transform. Include
"browserify": { "transform": [ "webkit-assign/browserify" ] }
in yourpackage.json
to use it.
v1.2.0
- Add streams interface.
require('webkit-assign')()
returns aTransform
stream suitable for transforming whole files. - Add gulp interface.
require('webkit-assign/gulp')()
returns a gulp plugin suitable for streaming gulp files through.
v1.1.0
- Update parser to use an AST, increasing the reliability of locating assignment nodes.
- Fix bug where directives (such as
"use strict";
) would be invalidated by a generatedvar
statement.
v1.0.0
Initial release.
- Read source code, replace instances of dot property assignment with bracket notation, and output the transformed code to another file.