Skip to content

Commit 6e5d17c

Browse files
committed
Update to 1.1.1
1 parent 16b9ed2 commit 6e5d17c

File tree

8 files changed

+15
-184
lines changed

8 files changed

+15
-184
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
.DS_Store
22
.idea
3-
/node_modules
3+
node_modules
4+
config/user.json

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22

33
Все основные изменения задокументированы в этом файле.
44

5+
[1.1.1]: https://github.com/digikid/create-project/releases/tag/1.1.1
6+
7+
## [1.1.1] - 2022-02-06
8+
9+
### Исправлено
10+
- Рефакторинг кода, исправление мелких ошибок
11+
12+
### Удалено
13+
- В связи с обновлением сборки удален запрос на использование ECMAScript-модулей
14+
515
[1.1.0]: https://github.com/digikid/create-project/releases/tag/1.1.0
616

717
## [1.1.0] - 2022-01-28

config/prompts.json

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -151,14 +151,6 @@
151151
]
152152
}
153153
],
154-
"params": [
155-
{
156-
"name": "es6",
157-
"type": "confirm",
158-
"message": "Включить импорт ES6 модулей?",
159-
"default": false
160-
}
161-
],
162154
"files": [
163155
{
164156
"name": "boilerplate",

config/user.json

Lines changed: 0 additions & 172 deletions
This file was deleted.

lib/tasks/addConfig.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ export default async (config, options) => {
7171

7272
data.presets.global[key] = value;
7373

74-
if ((key === 'es6') || (key === 'babel')) {
74+
if ((key === 'babel')) {
7575
if (!('modules' in data.presets.global)) {
7676
data.presets.global.modules = {};
7777
};

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-project",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"type": "module",
55
"imports": {
66
"#bin/*": "./bin/*.js",

promo.png

-4.63 KB
Loading

0 commit comments

Comments
 (0)