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

awesome-typescript-loader

Package Overview
Dependencies
Maintainers
1
Versions
185
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

awesome-typescript-loader - npm Package Compare versions

Comparing version 3.0.0-beta.17 to 3.0.0-beta.18

12

CHANGELOG.md

@@ -5,2 +5,14 @@ # Change Log

<a name="3.0.0-beta.18"></a>
# [3.0.0-beta.18](https://github.com/s-panferov/awesome-typescript-loader/compare/v3.0.0-beta.17...v3.0.0-beta.18) (2017-01-10)
### Bug Fixes
* correcting references to typescriptService.d.ts ([8b5413d](https://github.com/s-panferov/awesome-typescript-loader/commit/8b5413d))
* forgot to remove stale reference from tests ([aef976f](https://github.com/s-panferov/awesome-typescript-loader/commit/aef976f))
* typo in package.json file ([760e26b](https://github.com/s-panferov/awesome-typescript-loader/commit/760e26b))
<a name="3.0.0-beta.17"></a>

@@ -7,0 +19,0 @@ # [3.0.0-beta.17](https://github.com/s-panferov/awesome-typescript-loader/compare/v3.0.0-beta.16...v3.0.0-beta.17) (2016-12-14)

1

dist/helpers.d.ts

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

/// <reference types="typescript/lib/typescriptservices" />
import { OutputFile } from './interfaces';

@@ -3,0 +2,0 @@ export declare function toUnix(fileName: string): string;

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

/// <reference path="../src/defines.d.ts" />
import { PathsPlugin } from './paths-plugin';

@@ -3,0 +2,0 @@ import { CheckerPlugin as _CheckerPlugin } from './watch-mode';

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

if (!instance.compilerConfig.options.isolatedModules) {
result.deps.forEach(function (dep) { return loader.addDependency(dep); });
result.deps.forEach(function (dep) { return loader.addDependency(path.normalize(dep)); });
}

@@ -68,0 +68,0 @@ if (cached) {

/// <reference types="node" />
/// <reference types="typescript/lib/typescriptservices" />
import * as fs from 'fs';

@@ -4,0 +3,0 @@ import { Checker } from './checker';

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

/// <reference types="typescript/lib/typescriptservices" />
export interface CompilerInfo {

@@ -3,0 +2,0 @@ compilerPath: string;

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

/// <reference types="typescript/lib/typescriptservices" />
import { LoaderConfig } from './interfaces';

@@ -3,0 +2,0 @@ export interface Request {

{
"name": "awesome-typescript-loader",
"version": "3.0.0-beta.17",
"version": "3.0.0-beta.18",
"description": "Awesome TS loader for webpack",

@@ -14,3 +14,3 @@ "main": "dist/entry.js",

"compile": "tsc --pretty",
"build": "rm -rf dict && tsc -p prod --pretty",
"build": "rm -rf dist && tsc -p prod --pretty",
"lint": "tslint src/*.ts",

@@ -17,0 +17,0 @@ "release": "standard-version"

@@ -14,2 +14,5 @@ {

},
"files": [
"../node_modules/typescript/lib/typescriptServices.d.ts"
],
"compileOnSave": false,

@@ -16,0 +19,0 @@ "include": [

@@ -1,3 +0,1 @@

/// <reference path="./defines.d.ts" />
import * as _ from 'lodash';

@@ -87,3 +85,3 @@ import * as path from 'path';

// If our modules are isolated we don't need to recompile all the deps
result.deps.forEach(dep => loader.addDependency(dep));
result.deps.forEach(dep => loader.addDependency(path.normalize(dep)));
}

@@ -90,0 +88,0 @@ if (cached) {

@@ -1,3 +0,1 @@

/// <reference path="../defines.d.ts" />
import * as path from 'path';

@@ -4,0 +2,0 @@ import * as fs from 'fs';

@@ -14,2 +14,5 @@ {

},
"files": [
"node_modules/typescript/lib/typescriptServices.d.ts"
],
"compileOnSave": false,

@@ -16,0 +19,0 @@ "include": [

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