Skip to content
This repository has been archived by the owner on Jul 9, 2021. It is now read-only.

Commit

Permalink
[fixed] updated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
thealjey committed Jul 25, 2016
1 parent 773f0c8 commit 99e3d0d
Show file tree
Hide file tree
Showing 14 changed files with 19 additions and 24 deletions.
2 changes: 1 addition & 1 deletion lib/Compiler.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ var i = 0;
* @param {boolean} [compress=true] - if true `Compiler#save` will gzip compress the data in production mode
*/


var Compiler = exports.Compiler = function () {

/* eslint-disable require-jsdoc */
Expand All @@ -45,7 +46,6 @@ var Compiler = exports.Compiler = function () {
* @readOnly
* @instance
*/

function Compiler() {
var compress = arguments.length <= 0 || arguments[0] === undefined ? true : arguments[0];
(0, _classCallCheck3.default)(this, Compiler);
Expand Down
2 changes: 1 addition & 1 deletion lib/DevServer.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ var _serveStatic2 = _interopRequireDefault(_serveStatic);
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }

var LIVERELOAD_PORT = 35729;

var WEB_PORT = 3000;
var cwd = process.cwd();
var HotModuleReplacementPlugin = _webpack2.default.HotModuleReplacementPlugin;
Expand Down Expand Up @@ -93,7 +94,6 @@ var DevServer = exports.DevServer = function () {
* @private
* @instance
*/

function DevServer(script) {
var options = arguments.length <= 1 || arguments[1] === undefined ? {} : arguments[1];
(0, _classCallCheck3.default)(this, DevServer);
Expand Down
1 change: 0 additions & 1 deletion lib/Documentation.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ var Documentation = exports.Documentation = function () {
* @private
* @instance
*/

function Documentation() {
var options = arguments.length <= 0 || arguments[0] === undefined ? {} : arguments[0];
(0, _classCallCheck3.default)(this, Documentation);
Expand Down
2 changes: 0 additions & 2 deletions lib/JS.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { de
*
* const js = new JS();
*/

var JS = exports.JS = function () {

/* eslint-disable require-jsdoc */
Expand All @@ -52,7 +51,6 @@ var JS = exports.JS = function () {
* @private
* @instance
*/

function JS() {
var compress = arguments.length <= 0 || arguments[0] === undefined ? true : arguments[0];
var babelOptions = arguments.length <= 1 || arguments[1] === undefined ? {} : arguments[1];
Expand Down
3 changes: 1 addition & 2 deletions lib/JSCompiler.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { de
/* eslint-disable no-process-env */

var config = JSON.parse((0, _fs.readFileSync)((0, _path.join)(__dirname, '..', '.babelrc'), 'utf8'));

var cache = {};
var fakeFS = new _memoryFs2.default();
var optimize = _webpack2.default.optimize;
Expand Down Expand Up @@ -105,7 +106,6 @@ var productionPlugins = [new DefinePlugin({ 'process.env': { NODE_ENV: (0, _stri
var JSCompiler = exports.JSCompiler = function (_Compiler) {
(0, _inherits3.default)(JSCompiler, _Compiler);


/* eslint-disable require-jsdoc */

/**
Expand All @@ -116,7 +116,6 @@ var JSCompiler = exports.JSCompiler = function (_Compiler) {
* @private
* @instance
*/

function JSCompiler() {
var compress = arguments.length <= 0 || arguments[0] === undefined ? true : arguments[0];
var options = arguments.length <= 1 || arguments[1] === undefined ? {} : arguments[1];
Expand Down
1 change: 0 additions & 1 deletion lib/JSLint.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ var configFile = (0, _path.join)(__dirname, '..', '.eslintrc.yml');
var JSLint = exports.JSLint = function () {

/* eslint-disable require-jsdoc */

function JSLint() {
var rules = arguments.length <= 0 || arguments[0] === undefined ? {} : arguments[0];
(0, _classCallCheck3.default)(this, JSLint);
Expand Down
2 changes: 0 additions & 2 deletions lib/NativeProcess.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { de
*
* const mkdir = new NativeProcess('mkdir');
*/

var NativeProcess = exports.NativeProcess = function () {

/* eslint-disable require-jsdoc */
Expand All @@ -42,7 +41,6 @@ var NativeProcess = exports.NativeProcess = function () {
* @private
* @instance
*/

function NativeProcess(task) {
(0, _classCallCheck3.default)(this, NativeProcess);

Expand Down
2 changes: 0 additions & 2 deletions lib/SASS.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { de
*
* const sass = new SASS();
*/

var SASS = exports.SASS = function () {

/* eslint-disable require-jsdoc */
Expand All @@ -46,7 +45,6 @@ var SASS = exports.SASS = function () {
* @memberof SASS
* @instance
*/

function SASS() {
var compress = arguments.length <= 0 || arguments[0] === undefined ? true : arguments[0];
var includePaths = arguments.length <= 1 || arguments[1] === undefined ? [] : arguments[1];
Expand Down
2 changes: 0 additions & 2 deletions lib/SASSCompiler.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@ var precision = 8,
var SASSCompiler = exports.SASSCompiler = function (_Compiler) {
(0, _inherits3.default)(SASSCompiler, _Compiler);


/* eslint-disable require-jsdoc */

/**
Expand All @@ -85,7 +84,6 @@ var SASSCompiler = exports.SASSCompiler = function (_Compiler) {
* @private
* @instance
*/

function SASSCompiler() {
var compress = arguments.length <= 0 || arguments[0] === undefined ? true : arguments[0];
var includePaths = arguments.length <= 1 || arguments[1] === undefined ? [] : arguments[1];
Expand Down
2 changes: 1 addition & 1 deletion lib/SASSLint.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ var config = (0, _path.join)(__dirname, '..', 'config', 'scsslint.yml');
* const linter = new SASSLint();
*/


var SASSLint = exports.SASSLint = function () {

/** @constructs */
Expand All @@ -42,7 +43,6 @@ var SASSLint = exports.SASSLint = function () {
* @private
* @instance
*/

function SASSLint() {
(0, _classCallCheck3.default)(this, SASSLint);

Expand Down
2 changes: 2 additions & 0 deletions lib/highlight.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ if ('undefined' === typeof navigator) {
}

// we have to use normal requires because of the import hoisting


var cm = require('codemirror');

require('codemirror/mode/jsx/jsx');
Expand Down
2 changes: 2 additions & 0 deletions lib/jsx.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,8 @@ function parseHTML(html) {
* @param {string} key - CSS style key
* @return {string} JSX style key
*/


function toJSXKey(key) {
return (/^-ms-/.test(key) ? key.substr(1) : key).replace(/-(.)/g, function (match, chr) {
return chr.toUpperCase();
Expand Down
2 changes: 2 additions & 0 deletions lib/markdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ var md = new _remarkable2.default('full', { html: true, linkify: true, typograph
* @param {string} markdown - an arbitrary Markdown string
* @return {string} an HTML string
*/


function markdownToUnwrappedHTML(markdown) {
var html = (0, _trim2.default)(md.render(markdown));

Expand Down
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,11 @@
"homepage": "https://thealjey.github.io/webcompiler",
"dependencies": {
"autoprefixer": "^6.3.7",
"babel-cli": "^6.10.1",
"babel-core": "^6.10.4",
"babel-cli": "^6.11.4",
"babel-core": "^6.11.4",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.4",
"babel-plugin-transform-class-properties": "^6.10.2",
"babel-plugin-transform-class-properties": "^6.11.5",
"babel-plugin-transform-member-expression-literals": "^6.8.0",
"babel-plugin-transform-merge-sibling-variables": "^6.8.0",
"babel-plugin-transform-property-literals": "^6.8.0",
Expand All @@ -68,24 +68,24 @@
"babel-preset-es2015": "^6.9.0",
"babel-preset-es2015-loose": "^7.0.0",
"babel-preset-es2015-loose-native-modules": "^1.0.0",
"babel-preset-es2015-native-modules": "^6.9.0",
"babel-preset-es2015-native-modules": "^6.9.2",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-2": "^6.11.0",
"babel-runtime": "^6.9.2",
"cheerio": "^0.20.0",
"codemirror": "^5.16.0",
"eslint": "^3.1.0",
"codemirror": "^5.17.0",
"eslint": "^3.1.1",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-flow-vars": "^0.4.0",
"eslint-plugin-lodash": "^1.9.4",
"eslint-plugin-flow-vars": "^0.5.0",
"eslint-plugin-lodash": "^1.10.0",
"eslint-plugin-react": "^5.2.2",
"fb-watchman": "^1.9.0",
"ink-docstrap": "^1.2.1",
"js-yaml": "^3.6.1",
"jsdoc": "^3.4.0",
"jsdom": "^9.4.1",
"json-loader": "^0.5.4",
"lodash": "^4.13.1",
"lodash": "^4.14.0",
"memory-fs": "^0.3.0",
"mkdirp": "^0.5.1",
"node-sass": "^3.8.0",
Expand Down

0 comments on commit 99e3d0d

Please sign in to comment.