@instructure/ui-utils 8.25.0 → 8.25.1-snapshot.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/LICENSE.md +27 -0
  2. package/package.json +13 -12
package/LICENSE.md ADDED
@@ -0,0 +1,27 @@
1
+ ---
2
+ title: The MIT License (MIT)
3
+ category: Getting Started
4
+ order: 9
5
+ ---
6
+
7
+ # The MIT License (MIT)
8
+
9
+ Copyright (c) 2015 Instructure, Inc.
10
+
11
+ **Permission is hereby granted, free of charge, to any person obtaining a copy
12
+ of this software and associated documentation files (the "Software"), to deal
13
+ in the Software without restriction, including without limitation the rights
14
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15
+ copies of the Software, and to permit persons to whom the Software is
16
+ furnished to do so, subject to the following conditions.**
17
+
18
+ The above copyright notice and this permission notice shall be included in all
19
+ copies or substantial portions of the Software.
20
+
21
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
26
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
27
+ SOFTWARE.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@instructure/ui-utils",
3
- "version": "8.25.0",
3
+ "version": "8.25.1-snapshot.0+59b6babce",
4
4
  "description": "A collection of utilities for UI components",
5
5
  "author": "Instructure, Inc. Engineering and Product Design",
6
6
  "module": "./es/index.js",
@@ -13,23 +13,23 @@
13
13
  "homepage": "https://instructure.github.io/instructure-ui/",
14
14
  "bugs": "https://github.com/instructure/instructure-ui/issues",
15
15
  "scripts": {
16
- "lint": "ui-test --lint",
17
- "lint:fix": "ui-test --lint --fix",
18
- "clean": "ui-build --clean",
19
- "build": "ui-build --modules es,cjs",
20
- "build:watch": "ui-build --watch",
21
- "build:types": "tsc -p tsconfig.build.json"
16
+ "lint": "run -T ui-test --lint",
17
+ "lint:fix": "run -T ui-test --lint --fix",
18
+ "clean": "run -T ui-build --clean",
19
+ "build": "run -T ui-build --modules es,cjs",
20
+ "build:watch": "run -T ui-build --watch",
21
+ "build:types": "run -T tsc -p tsconfig.build.json"
22
22
  },
23
23
  "license": "MIT",
24
24
  "devDependencies": {
25
- "@instructure/ui-babel-preset": "8.25.0",
26
- "@instructure/ui-test-utils": "8.25.0",
25
+ "@instructure/ui-babel-preset": "8.25.1-snapshot.0+59b6babce",
26
+ "@instructure/ui-test-utils": "8.25.1-snapshot.0+59b6babce",
27
27
  "@types/json-stable-stringify": "^1.0.1"
28
28
  },
29
29
  "dependencies": {
30
30
  "@babel/runtime": "^7.13.10",
31
- "@instructure/console": "8.25.0",
32
- "@instructure/ui-dom-utils": "8.25.0",
31
+ "@instructure/console": "8.25.1-snapshot.0+59b6babce",
32
+ "@instructure/ui-dom-utils": "8.25.1-snapshot.0+59b6babce",
33
33
  "bowser": "^1.9.4",
34
34
  "fast-deep-equal": "^3",
35
35
  "json-stable-stringify": "^1.0.1",
@@ -42,5 +42,6 @@
42
42
  "publishConfig": {
43
43
  "access": "public"
44
44
  },
45
- "sideEffects": false
45
+ "sideEffects": false,
46
+ "gitHead": "59b6babce07a9242111475156f544ec11c1a9283"
46
47
  }