@backstage/create-app 0.0.0-nightly-2021111322639 → 0.0.0-nightly-202111142265

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.
package/CHANGELOG.md CHANGED
@@ -1,11 +1,28 @@
1
1
  # @backstage/create-app
2
2
 
3
- ## 0.0.0-nightly-2021111322639
3
+ ## 0.0.0-nightly-202111142265
4
4
 
5
5
  ### Patch Changes
6
6
 
7
+ - 25dfc2d483: Updated the root `package.json` to include files with `.cjs` and `.mjs` extensions in the `"lint-staged"` configuration.
8
+
9
+ To make this change to an existing app, apply the following changes to the `package.json` file:
10
+
11
+ ```diff
12
+ "lint-staged": {
13
+ - "*.{js,jsx,ts,tsx}": [
14
+ + "*.{js,jsx,ts,tsx,mjs,cjs}": [
15
+ ```
16
+
7
17
  - Updated dependencies
8
- - @backstage/plugin-github-actions@0.0.0-nightly-2021111322639
18
+ - @backstage/plugin-github-actions@0.0.0-nightly-202111142265
19
+ - @backstage/core-app-api@0.0.0-nightly-202111142265
20
+ - @backstage/core-plugin-api@0.0.0-nightly-202111142265
21
+ - @backstage/backend-common@0.0.0-nightly-202111142265
22
+ - @backstage/core-components@0.0.0-nightly-202111142265
23
+ - @backstage/cli@0.0.0-nightly-202111142265
24
+ - @backstage/plugin-auth-backend@0.0.0-nightly-202111142265
25
+ - @backstage/plugin-techdocs@0.0.0-nightly-202111142265
9
26
 
10
27
  ## 0.4.7
11
28
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@backstage/create-app",
3
3
  "description": "A CLI that helps you create your own Backstage app",
4
- "version": "0.0.0-nightly-2021111322639",
4
+ "version": "0.0.0-nightly-202111142265",
5
5
  "private": false,
6
6
  "publishConfig": {
7
7
  "access": "public"
@@ -41,7 +41,7 @@
41
41
  },
42
42
  "devDependencies": {
43
43
  "@types/fs-extra": "^9.0.1",
44
- "@types/inquirer": "^7.3.1",
44
+ "@types/inquirer": "^8.1.3",
45
45
  "@types/node": "^14.14.32",
46
46
  "@types/recursive-readdir": "^2.2.0",
47
47
  "mock-fs": "^5.1.1",
@@ -38,7 +38,7 @@
38
38
  },
39
39
  "prettier": "@spotify/prettier-config",
40
40
  "lint-staged": {
41
- "*.{js,jsx,ts,tsx}": [
41
+ "*.{js,jsx,ts,tsx,mjs,cjs}": [
42
42
  "eslint --fix",
43
43
  "prettier --write"
44
44
  ],