create-template-project 1.2.4 → 1.2.6
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.
|
@@ -82,6 +82,7 @@ export const linter = defineConfig({
|
|
|
82
82
|
'import/no-named-export': 'off',
|
|
83
83
|
'import/no-namespace': 'off', // TODO: consider enabling
|
|
84
84
|
'import/no-nodejs-modules': 'off',
|
|
85
|
+
'import/no-unassigned-import': ['error', {'allow': ['**/*.css']}],
|
|
85
86
|
'import/prefer-default-export': 'off',
|
|
86
87
|
'import/no-default-export': 'off',
|
|
87
88
|
'jest/consistent-test-it': 'off',
|
|
@@ -142,6 +143,7 @@ export const linter = defineConfig({
|
|
|
142
143
|
'jest/valid-title': 'off',
|
|
143
144
|
'oxc/no-async-await': 'off',
|
|
144
145
|
'oxc/no-map-spread': 'off', // TODO: consider enabling
|
|
146
|
+
'oxc/no-optional-chaining': 'off',
|
|
145
147
|
'oxc/no-rest-spread-properties': 'off',
|
|
146
148
|
'unicorn/escape-case': 'off',
|
|
147
149
|
'unicorn/filename-case': 'off', // TODO: consider enabling
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-template-project",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.6",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "An ultra-modular, type-safe Node.js CLI tool used to scaffold new project templates (CLI, Webpage, Webapp, Fullstack) with best-practice configurations pre-installed.",
|
|
6
6
|
"keywords": [
|