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

express-tsx

Package Overview
Dependencies
Maintainers
1
Versions
103
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

express-tsx - npm Package Compare versions

Comparing version 4.0.2 to 4.0.3

dist/render/requirejs.browser.config.ts

2

dist/Compile/Compile.js

@@ -75,3 +75,3 @@ "use strict";

}
resolvedModules = Array.from(source.resolvedModules.values()).map(({ resolvedFileName }) => resolvedFileName);
resolvedModules = Array.from(source.resolvedModules.values()).filter(v => v).map(({ resolvedFileName }) => resolvedFileName);
return resolvedModules;

@@ -78,0 +78,0 @@ };

@@ -14,4 +14,4 @@ "use strict";

const path = require("path");
exports.browserInitPath = path.join(__dirname, './browser.init.ts');
exports.requirejsConfigPath = path.join(__dirname, './requirejs.browser.config.ts');
exports.browserInitPath = path.join(__dirname, '../../static/browser.init.ts');
exports.requirejsConfigPath = path.join(__dirname, '../../static/requirejs.browser.config.ts');
exports.html = (file, data, view_data) => __awaiter(this, void 0, void 0, function* () {

@@ -18,0 +18,0 @@ let compiler = data.res.app.compiler;

@@ -1,2 +0,2 @@

requirejs.config({ "waitSeconds": 7, "baseUrl": "/media/shynome/workspace/sys/node/lib/node_modules/mocha/bin/", "paths": { "react": "//cdn.bootcss.com/react/15.6.1/react.js#", "react-dom": "//cdn.bootcss.com/react/15.6.1/react-dom.js#", "requirejs": "//cdn.bootcss.com/require.js/2.3.3/require.min.js#", "css": "//cdn.bootcss.com/require-css/0.1.10/css.min.js#", "es5-shim": "//cdn.bootcss.com/es5-shim/4.5.9/es5-shim.min.js#", "es6-shim": "//cdn.bootcss.com/es6-shim/0.35.3/es6-shim.min.js" }, "bundles": {}, "pkgs": {}, "shim": { "react": { "deps": ["es6-shim", "es5-shim"] } }, "config": {}, "waitSecond": 30 });
requirejs.config({ "waitSeconds": 7, "baseUrl": "/media/shynome/workspace/express-tsx/node_modules/mocha/bin/", "paths": { "react": "//cdn.bootcss.com/react/15.6.1/react.js#", "react-dom": "//cdn.bootcss.com/react/15.6.1/react-dom.js#", "requirejs": "//cdn.bootcss.com/require.js/2.3.3/require.min.js#", "css": "//cdn.bootcss.com/require-css/0.1.10/css.min.js#", "es5-shim": "//cdn.bootcss.com/es5-shim/4.5.9/es5-shim.min.js#", "es6-shim": "//cdn.bootcss.com/es6-shim/0.35.3/es6-shim.min.js" }, "bundles": {}, "pkgs": {}, "shim": { "react": { "deps": ["es6-shim", "es5-shim"] } }, "config": {}, "waitSecond": 30 });
//# sourceMappingURL=requirejs.browser.config.js.map
{
"name": "express-tsx",
"version": "4.0.2",
"version": "4.0.3",
"description": "express view engine",

@@ -18,4 +18,2 @@ "main": "dist/index.js",

"@types/node": "^8.0.9",
"@types/react": "^15.0.35",
"@types/react-dom": "^15.5.1",
"express": "^4.15.3",

@@ -22,0 +20,0 @@ "gulp": "^3.9.1",

@@ -84,3 +84,3 @@ import ts = require('typescript')

}
resolvedModules = Array.from((source.resolvedModules as Map<any,{resolvedFileName:string}>).values()).map(({resolvedFileName})=>resolvedFileName)
resolvedModules = Array.from((source.resolvedModules as Map<any,{resolvedFileName:string}>).values()).filter(v=>v).map(({resolvedFileName})=>resolvedFileName)
return resolvedModules

@@ -87,0 +87,0 @@ }

@@ -5,4 +5,4 @@ import requirejs = require('requirejs')

import path = require('path')
export const browserInitPath = path.join(__dirname,'./browser.init.ts')
export const requirejsConfigPath = path.join(__dirname,'./requirejs.browser.config.ts')
export const browserInitPath = path.join(__dirname,'../../static/browser.init.ts')
export const requirejsConfigPath = path.join(__dirname,'../../static/requirejs.browser.config.ts')
export let html = async(file:string,data:data,view_data:ViewData):Promise<string>=>{

@@ -9,0 +9,0 @@ let compiler = data.res.app.compiler

@@ -7,4 +7,8 @@ {

"sourceMap": true,
"lib": [
"es2016",
"dom"
],
"outDir": "../dist"
}
}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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