bobril-g11n
Advanced tools
Comparing version 3.3.3 to 3.3.4
CHANGELOG | ||
=== | ||
3.3.4 | ||
-- | ||
Simplified typings and Moment import. | ||
3.3.2 | ||
@@ -5,0 +10,0 @@ -- |
@@ -1,2 +0,1 @@ | ||
/// <reference path="./typings/moment/moment-node.d.ts" /> | ||
export * from './src/msgFormatParser'; | ||
@@ -3,0 +2,0 @@ export * from './src/msgFormatter'; |
{ | ||
"name": "bobril-g11n", | ||
"version": "3.3.3", | ||
"version": "3.3.4", | ||
"description": "Bobril globalization", | ||
@@ -16,2 +16,14 @@ "main": "index.js", | ||
}, | ||
"bobril": { | ||
"compilerOptions": { | ||
"declaration": true, | ||
"noImplicitAny": true, | ||
"noImplicitThis": true, | ||
"noUnusedLocals": true, | ||
"noUnusedParameters": true, | ||
"noImplicitReturns": true, | ||
"noFallthroughCasesInSwitch": true, | ||
"strictNullChecks": true | ||
} | ||
}, | ||
"scripts": { | ||
@@ -18,0 +30,0 @@ "test": "bb test" |
@@ -0,1 +1,2 @@ | ||
import * as moment from 'moment'; | ||
import { RuntimeFunctionGenerator } from './RuntimeFunctionGenerator'; | ||
@@ -5,4 +6,2 @@ import * as localeDataStorage from './localeDataStorage'; | ||
declare var require: any; | ||
var moment = require('moment'); | ||
(<any>window).moment = moment; | ||
@@ -9,0 +8,0 @@ |
@@ -1,2 +0,2 @@ | ||
/// <reference path="../typings/moment/moment-node.d.ts" /> | ||
import * as moment from 'moment'; | ||
import * as msgFormatParser from './msgFormatParser'; | ||
@@ -3,0 +3,0 @@ import * as msgFormatter from './msgFormatter'; |
@@ -6,9 +6,3 @@ { | ||
"moduleResolution": "node", | ||
"declaration": false, | ||
"noImplicitAny": true, | ||
"noImplicitThis": true, | ||
"noUnusedLocals": true, | ||
"noUnusedParameters": true, | ||
"noImplicitReturns": true, | ||
"noFallthroughCasesInSwitch": true, | ||
"declaration": true, | ||
"lib": [ | ||
@@ -23,14 +17,18 @@ "es5", | ||
"preserveConstEnums": false, | ||
"strictNullChecks": true, | ||
"experimentalDecorators": true | ||
"experimentalDecorators": true, | ||
"noImplicitAny": true, | ||
"noImplicitThis": true, | ||
"noUnusedLocals": true, | ||
"noUnusedParameters": true, | ||
"noImplicitReturns": true, | ||
"noFallthroughCasesInSwitch": true, | ||
"strictNullChecks": true | ||
}, | ||
"include": [ | ||
"**/*" | ||
], | ||
"compileOnSave": false, | ||
"include": [ | ||
"./index.ts", | ||
"./src/*.ts", | ||
"./test/*.ts", | ||
"./typings/moment/moment-node.d.ts", | ||
"./typings/numeral/numeral.d.ts", | ||
"./typings/jasmine/jasmine.d.ts" | ||
"files": [ | ||
"c:/Research/bobril-build/typings/jasmine/jasmine.d.ts" | ||
] | ||
} |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
88387
35
2093