@microsoft/fast-web-utilities
Advanced tools
Comparing version 5.1.0 to 5.2.0
@@ -5,3 +5,26 @@ { | ||
{ | ||
"date": "Tue, 25 Jan 2022 07:09:54 GMT", | ||
"date": "Sun, 03 Apr 2022 07:09:53 GMT", | ||
"tag": "@microsoft/fast-web-utilities_v5.2.0", | ||
"version": "5.2.0", | ||
"comments": { | ||
"minor": [ | ||
{ | ||
"comment": "Declare package as using ES modules", | ||
"author": "nicholasrice@users.noreply.github.com", | ||
"commit": "f6107c448ab6446667f4d9e86d9f9c11fff075aa", | ||
"package": "@microsoft/fast-web-utilities" | ||
} | ||
], | ||
"patch": [ | ||
{ | ||
"comment": "update exenv-es6 to 1.1.0 to ensure we lock to es module support", | ||
"author": "chhol@microsoft.com", | ||
"commit": "077a14b2e63332384349d2be205b4afa7246b13c", | ||
"package": "@microsoft/fast-web-utilities" | ||
} | ||
] | ||
} | ||
}, | ||
{ | ||
"date": "Tue, 25 Jan 2022 07:11:53 GMT", | ||
"tag": "@microsoft/fast-web-utilities_v5.1.0", | ||
@@ -8,0 +31,0 @@ "version": "5.1.0", |
# Change Log - @microsoft/fast-web-utilities | ||
This log was last generated on Tue, 25 Jan 2022 07:09:54 GMT and should not be manually modified. | ||
This log was last generated on Sun, 03 Apr 2022 07:09:53 GMT and should not be manually modified. | ||
<!-- Start content --> | ||
## 5.2.0 | ||
Sun, 03 Apr 2022 07:09:53 GMT | ||
### Minor changes | ||
- Declare package as using ES modules (nicholasrice@users.noreply.github.com) | ||
### Patches | ||
- update exenv-es6 to 1.1.0 to ensure we lock to es module support (chhol@microsoft.com) | ||
## 5.1.0 | ||
Tue, 25 Jan 2022 07:09:54 GMT | ||
Tue, 25 Jan 2022 07:11:53 GMT | ||
@@ -11,0 +23,0 @@ ### Minor changes |
@@ -1,13 +0,13 @@ | ||
export * from "./aria"; | ||
export * from "./array"; | ||
export * from "./class-names"; | ||
export * from "./dom"; | ||
export * from "./events"; | ||
export * from "./html"; | ||
export * from "./key-codes"; | ||
export * from "./localization"; | ||
export * from "./numbers"; | ||
export * from "./strings"; | ||
export * from "./query"; | ||
export * from "./rtl-scroll-converter"; | ||
export * from "./system-colors"; | ||
export * from "./aria.js"; | ||
export * from "./array.js"; | ||
export * from "./class-names.js"; | ||
export * from "./dom.js"; | ||
export * from "./events.js"; | ||
export * from "./html.js"; | ||
export * from "./key-codes.js"; | ||
export * from "./localization.js"; | ||
export * from "./numbers.js"; | ||
export * from "./strings.js"; | ||
export * from "./query.js"; | ||
export * from "./rtl-scroll-converter.js"; | ||
export * from "./system-colors.js"; |
@@ -1,13 +0,13 @@ | ||
export * from "./aria"; | ||
export * from "./array"; | ||
export * from "./class-names"; | ||
export * from "./dom"; | ||
export * from "./events"; | ||
export * from "./html"; | ||
export * from "./key-codes"; | ||
export * from "./localization"; | ||
export * from "./numbers"; | ||
export * from "./strings"; | ||
export * from "./query"; | ||
export * from "./rtl-scroll-converter"; | ||
export * from "./system-colors"; | ||
export * from "./aria.js"; | ||
export * from "./array.js"; | ||
export * from "./class-names.js"; | ||
export * from "./dom.js"; | ||
export * from "./events.js"; | ||
export * from "./html.js"; | ||
export * from "./key-codes.js"; | ||
export * from "./localization.js"; | ||
export * from "./numbers.js"; | ||
export * from "./strings.js"; | ||
export * from "./query.js"; | ||
export * from "./rtl-scroll-converter.js"; | ||
export * from "./system-colors.js"; |
@@ -1,2 +0,2 @@ | ||
import { Direction } from "./localization"; | ||
import { Direction } from "./localization.js"; | ||
/** | ||
@@ -3,0 +3,0 @@ * Standardize left scroll conversion when direction is rtl |
import { canUseDOM } from "exenv-es6"; | ||
import { Direction } from "./localization"; | ||
import { Direction } from "./localization.js"; | ||
/** | ||
@@ -4,0 +4,0 @@ * Standardize left scroll conversion when direction is rtl |
{ | ||
"name": "@microsoft/fast-web-utilities", | ||
"description": "FAST web utilities", | ||
"version": "5.1.0", | ||
"version": "5.2.0", | ||
"sideEffects": false, | ||
@@ -20,2 +20,3 @@ "author": { | ||
"types": "dist/index.d.ts", | ||
"type": "module", | ||
"scripts": { | ||
@@ -30,11 +31,11 @@ "build": "tsc -p ./tsconfig.build.json", | ||
"test-node:verbose": "mocha --reporter spec --exit dist/esm/__test__/setup-node.js './dist/esm/**/*.spec.js'", | ||
"test-chrome": "karma start karma.conf.js --browsers=ChromeHeadlessOpt --single-run --coverage", | ||
"test-chrome:verbose": "karma start karma.conf.js --browsers=ChromeHeadlessOpt --single-run --coverage --reporter=mocha", | ||
"test-chrome:watch": "karma start karma.conf.js --browsers=ChromeHeadlessOpt --coverage --watch-extensions js", | ||
"test-chrome:debugger": "karma start karma.conf.js --browsers=ChromeDebugging", | ||
"test-chrome:verbose:watch": "karma start karma.conf.js --browsers=ChromeHeadlessOpt --coverage --watch-extensions js --reporter=mocha", | ||
"test-chrome:verbose:debugger": "karma start karma.conf.js --browsers=ChromeDebugging --reporter=mocha", | ||
"test-firefox": "karma start karma.conf.js --browsers=FirefoxHeadless --single-run --coverage", | ||
"test-firefox:verbose": "karma start karma.conf.js --browsers=FirefoxHeadless --single-run --coverage --reporter=mocha", | ||
"test-firefox:watch": "karma start karma.conf.js --browsers=FirefoxHeadless --coverage --watch-extensions js", | ||
"test-chrome": "karma start karma.conf.ts --browsers=ChromeHeadlessOpt --single-run --coverage", | ||
"test-chrome:verbose": "karma start karma.conf.ts --browsers=ChromeHeadlessOpt --single-run --coverage --reporter=mocha", | ||
"test-chrome:watch": "karma start karma.conf.ts --browsers=ChromeHeadlessOpt --coverage --watch-extensions js", | ||
"test-chrome:debugger": "karma start karma.conf.ts --browsers=ChromeDebugging", | ||
"test-chrome:verbose:watch": "karma start karma.conf.ts --browsers=ChromeHeadlessOpt --coverage --watch-extensions js --reporter=mocha", | ||
"test-chrome:verbose:debugger": "karma start karma.conf.ts --browsers=ChromeDebugging --reporter=mocha", | ||
"test-firefox": "karma start karma.conf.ts --browsers=FirefoxHeadless --single-run --coverage", | ||
"test-firefox:verbose": "karma start karma.conf.ts --browsers=FirefoxHeadless --single-run --coverage --reporter=mocha", | ||
"test-firefox:watch": "karma start karma.conf.ts --browsers=FirefoxHeadless --coverage --watch-extensions js", | ||
"eslint": "eslint . --ext .ts,.tsx", | ||
@@ -45,4 +46,2 @@ "eslint:fix": "eslint . --ext .ts,.tsx --fix", | ||
"devDependencies": { | ||
"@babel/core": "^7.12.13", | ||
"@babel/preset-env": "^7.12.13", | ||
"@types/chai": "^4.2.11", | ||
@@ -52,3 +51,2 @@ "@types/karma": "^5.0.0", | ||
"@microsoft/eslint-config-fast-dna": "^2.0.0", | ||
"babel-core": "^7.0.0-bridge.0", | ||
"chai": "^4.2.0", | ||
@@ -78,4 +76,4 @@ "chai-spies": "^1.0.0", | ||
"dependencies": { | ||
"exenv-es6": "^1.0.0" | ||
"exenv-es6": "^1.1.1" | ||
} | ||
} |
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
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 2 instances in 1 package
97648
26
2152
0
Yes
Updatedexenv-es6@^1.1.1