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

bobril-g11n

Package Overview
Dependencies
Maintainers
1
Versions
50
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bobril-g11n - npm Package Compare versions

Comparing version 3.3.3 to 3.3.4

5

CHANGELOG.md
CHANGELOG
===
3.3.4
--
Simplified typings and Moment import.
3.3.2

@@ -5,0 +10,0 @@ --

1

index.ts

@@ -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

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