Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

thinkful-ui

Package Overview
Dependencies
Maintainers
1
Versions
281
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

thinkful-ui - npm Package Compare versions

Comparing version 0.1.8 to 0.2.0-alpha

19

package.json
{
"name": "thinkful-ui",
"version": "0.1.8",
"version": "0.2.0-alpha",
"description": "Shared navigation and UI resources for Thinkful.",

@@ -26,5 +26,4 @@ "main": "src/index.es6",

"react": "^0.13.3",
"remarkable-loader": "^0.1.0",
"spark-md5": "0.0.5",
"tfstyleguide": "^2.0.1"
"tfstyleguide": "^2.1.0"
},

@@ -36,14 +35,16 @@ "devDependencies": {

"babel-runtime": "^5.4.7",
"css-loader": "^0.13.1",
"css-loader": "^0.14.4",
"debug": "^2.2.0",
"extract-text-webpack-plugin": "^0.8.0",
"json-loader": "^0.5.1",
"extract-text-webpack-plugin": "^0.8.1",
"json-loader": "^0.5.2",
"less": "^2.5.1",
"less-loader": "^2.2.0",
"node-libs-browser": "^0.5.2",
"node-notifier": "^4.2.1",
"react-hot-loader": "^1.2.7",
"style-loader": "^0.12.2",
"webpack": "^1.9.7",
"webpack-dev-server": "^1.8.2"
"remarkable-loader": "^0.1.0",
"style-loader": "^0.12.3",
"webpack": "^1.9.10",
"webpack-dev-server": "^1.9.0"
}
}
require('./app-bar.less');
module.exports = require('./Navigation');
module.exports = {
AppBar: require('./Navigation')
}

@@ -83,2 +83,3 @@ const _ = require('lodash');

</ul>
{user &&
<a className="app-nav-link app-nav-link__toggle" onClick={this.toggleMenu.bind(this)}>

@@ -88,2 +89,3 @@ <span alt="Menu" className="app-nav-burger"></span>

</a>
}
</nav>

@@ -90,0 +92,0 @@ </div>

'use strict';
var _ = require('lodash');

@@ -8,8 +7,7 @@ var path = require('path');

module.exports = function (options) {
options = _.defaults({}, options, {
__dirname: __dirname,
displayName: 'TUI',
entry: ['./client/index.jsx'],
hotloadPort: process.env.HOTLOAD_PORT || 8888
entry: ['./client/index.es6']
});

@@ -46,7 +44,2 @@

var webpackConfig = {
// Hotload Specific Config
displayName: options.displayName,
hotloadPort: options.hotloadPort,
// Standard Webpack Config
cache: true,

@@ -69,6 +62,2 @@ devtool: 'source-map',

'style', 'main.css', { disable: false, allChunks: true })],
remarkable: {
preset: 'full',
html: true
},
resolve: {

@@ -78,3 +67,11 @@ extensions: ['', '.js', '.jsx', '.es', '.es6'],

},
target: 'web'
resolveLoader: {
root: path.join(__dirname, 'node_modules')},
target: 'web',
// Loader specific customization
remarkable: {
preset: 'full',
html: true
}
};

@@ -81,0 +78,0 @@

@@ -8,5 +8,5 @@ 'use strict';

module.exports = function (webpackConfig) {
var NAME = webpackConfig.displayName;
var PORT = webpackConfig.hotloadPort;
module.exports = function (webpackConfig, options) {
var NAME = webpackConfig.displayName || options.displayName;
var PORT = webpackConfig.hotloadPort || options.hotloadPort || 8888;
var HOST = "http://localhost:" + PORT;

@@ -13,0 +13,0 @@

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc