create-mirta 0.2.1 → 0.2.2

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.
@@ -9,10 +9,10 @@
9
9
  "build:dev": "cross-env NODE_ENV=development rollup -c"
10
10
  },
11
11
  "dependencies": {
12
- "mirta": "0.2.1"
12
+ "mirta": "0.2.2"
13
13
  },
14
14
  "devDependencies": {
15
- "@mirta/rollup": "0.2.1",
15
+ "@mirta/rollup": "0.2.2",
16
16
  "cross-env": "^7.0.3",
17
17
  "rollup": "^4.45.1"
18
18
  }
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "dependencies": {
3
- "@mirta/store": "0.2.1"
3
+ "@mirta/store": "0.2.2"
4
4
  }
5
5
  }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "devDependencies": {
3
- "@mirta/globals": "0.2.1",
4
- "@mirta/tsconfig": "0.2.1",
3
+ "@mirta/globals": "0.2.2",
4
+ "@mirta/tsconfig": "0.2.2",
5
5
  "@types/node": "^24.1.0",
6
6
  "typescript": "^5.8.3"
7
7
  }
@@ -13,6 +13,7 @@
13
13
  },
14
14
  "include": [
15
15
  "*.ts",
16
+ "src/**/*.js",
16
17
  "src/**/*.ts",
17
18
  "tests/**/*.ts",
18
19
  "types/**/*.d.ts"
@@ -3,7 +3,7 @@
3
3
  "test": "vitest run"
4
4
  },
5
5
  "devDependencies": {
6
- "@mirta/testing": "0.2.1",
6
+ "@mirta/testing": "0.2.2",
7
7
  "vitest": "^3.2.4",
8
8
  "vitest-mock-extended": "^3.1.0"
9
9
  }
@@ -1,5 +1,6 @@
1
1
  import js from '@eslint/js'
2
2
  import globals from 'globals'
3
+ import globalsMirta from '@mirta/globals/eslint'
3
4
  import tseslint from 'typescript-eslint'
4
5
  import stylistic from '@stylistic/eslint-plugin'
5
6
  <%_ if (addVitest) { _%>
@@ -8,8 +9,20 @@ import vitest from 'eslint-plugin-vitest'
8
9
  import { defineConfig, globalIgnores } from 'eslint/config'
9
10
 
10
11
  export default defineConfig([
11
- { files: ['**/*.{js,mjs,cjs,ts,mts,cts}'], plugins: { js }, extends: ['js/recommended'] },
12
- { files: ['**/*.{js,mjs,cjs,ts,mts,cts}'], languageOptions: { globals: globals.node } },
12
+ {
13
+ files: ['**/*.{js,mjs,cjs,ts,mts,cts}'],
14
+ plugins: { js },
15
+ extends: ['js/recommended'],
16
+ },
17
+ {
18
+ files: ['**/*.{js,mjs,cjs,ts,mts,cts}'],
19
+ languageOptions: {
20
+ globals: {
21
+ ...globals.node,
22
+ ...globalsMirta,
23
+ },
24
+ },
25
+ },
13
26
  // TypeScript Defaults
14
27
  tseslint.configs.strictTypeChecked.map(config => ({
15
28
  ...config,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "create-mirta",
3
3
  "description": "🛠️ The recommended way to start a Mirta project.",
4
- "version": "0.2.1",
4
+ "version": "0.2.2",
5
5
  "license": "Unlicense",
6
6
  "keywords": [
7
7
  "mirta",