@ms-cloudpack/environment 0.1.1 → 0.1.3

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/README.md +0 -2
  2. package/package.json +10 -9
package/README.md CHANGED
@@ -5,5 +5,3 @@ Environment-related utilities for Cloudpack. This helps centralize `process.env`
5
5
  ### Development notes
6
6
 
7
7
  This package is written in JS so it can be consumed by Cloudpack's internal scripts package `@ms-cloudpack/scripts`. Only `.d.ts` files are emitted to `lib`.
8
-
9
- The package also builds with the `cloudpack-scripts` bin from `@ms-cloudpack/scripts` (via the repo root dependency on that package). Technically this is circular, but it won't be an issue in practice because the scripts package is also written in JS.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ms-cloudpack/environment",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "description": "Environment-related utilities for Cloudpack.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -12,15 +12,16 @@
12
12
  "import": "./src/index.js"
13
13
  }
14
14
  },
15
- "devDependencies": {
16
- "@ms-cloudpack/eslint-plugin-internal": "^0.0.1"
17
- },
18
15
  "scripts": {
19
- "api": "yarn run -T cloudpack-scripts api",
20
- "build:watch": "yarn run -T cloudpack-scripts build-watch",
21
- "build": "yarn run -T cloudpack-scripts build",
22
- "lint:update": "yarn run -T cloudpack-scripts lint-update",
23
- "lint": "yarn run -T cloudpack-scripts lint"
16
+ "api": "cloudpack-scripts api",
17
+ "build:watch": "cloudpack-scripts build-watch",
18
+ "build": "cloudpack-scripts build",
19
+ "lint:update": "cloudpack-scripts lint-update",
20
+ "lint": "cloudpack-scripts lint"
21
+ },
22
+ "devDependencies": {
23
+ "@ms-cloudpack/eslint-plugin-internal": "^0.0.1",
24
+ "@ms-cloudpack/scripts": "^0.0.1"
24
25
  },
25
26
  "files": [
26
27
  "lib/**/!(*.test.*)",