@robgietema/generator-nick 0.0.18 → 0.0.19
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/generators/app/index.js +1 -1
- package/package.json +2 -1
package/generators/app/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import path from 'path';
|
|
2
2
|
import Generator from 'yeoman-generator';
|
|
3
3
|
import updateNotifier from 'update-notifier';
|
|
4
|
-
import packageJson from '../../package.json'
|
|
4
|
+
import packageJson from '../../package.json' with { type: 'json' };
|
|
5
5
|
|
|
6
6
|
const currentDir = path.basename(process.cwd());
|
|
7
7
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@robgietema/generator-nick",
|
|
3
3
|
"description": "Generator for Nick",
|
|
4
|
+
"type": "module",
|
|
4
5
|
"maintainers": [
|
|
5
6
|
{
|
|
6
7
|
"name": "Rob Gietema",
|
|
@@ -9,7 +10,7 @@
|
|
|
9
10
|
}
|
|
10
11
|
],
|
|
11
12
|
"license": "MIT",
|
|
12
|
-
"version": "0.0.
|
|
13
|
+
"version": "0.0.19",
|
|
13
14
|
"repository": {
|
|
14
15
|
"type": "git",
|
|
15
16
|
"url": "git@github.com:robgietema/nick.git"
|