@transclude/create 0.1.1 → 0.3.0

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/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2026 Joe Dakroub
3
+ Copyright (c) 2026 Atelier Dakroub
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node
2
- // Starts a project. `npm create transclude my-app`, or `npx create-transclude`.
2
+ // Starts a project. `npm create @transclude my-app`.
3
3
  //
4
4
  // It copies a template and rewrites three things: the package name, the
5
5
  // dependency on this framework, and the title on the page. Nothing else is
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@transclude/create",
3
- "version": "0.1.1",
3
+ "version": "0.3.0",
4
4
  "description": "Starts a transclude project. `npm create @transclude my-app`.",
5
5
  "keywords": [
6
6
  "transclude",
@@ -4,8 +4,10 @@
4
4
  "module": "esnext",
5
5
  "moduleResolution": "bundler",
6
6
  "lib": ["esnext", "dom", "dom.iterable"],
7
- "checkJs": false,
7
+ "checkJs": true,
8
+ "maxNodeModuleJsDepth": 0,
8
9
  "noEmit": true
9
10
  },
10
- "include": ["app", "transclude.config.js"]
11
+ "include": ["app", "transclude.config.js"],
12
+ "exclude": ["app/public"]
11
13
  }
@@ -4,8 +4,10 @@
4
4
  "module": "esnext",
5
5
  "moduleResolution": "bundler",
6
6
  "lib": ["esnext", "dom", "dom.iterable"],
7
- "checkJs": false,
7
+ "checkJs": true,
8
+ "maxNodeModuleJsDepth": 0,
8
9
  "noEmit": true
9
10
  },
10
- "include": ["app", "transclude.config.js"]
11
+ "include": ["app", "transclude.config.js"],
12
+ "exclude": ["app/public"]
11
13
  }
@@ -1,8 +0,0 @@
1
- import { defineConfig } from 'vite';
2
- import transclude from '@transclude/core';
3
- import config from './transclude.config.js';
4
-
5
- export default defineConfig({
6
- appType: 'custom',
7
- plugins: [transclude(config)],
8
- });
@@ -1,8 +0,0 @@
1
- import { defineConfig } from 'vite';
2
- import transclude from '@transclude/core';
3
- import config from './transclude.config.js';
4
-
5
- export default defineConfig({
6
- appType: 'custom',
7
- plugins: [transclude(config)],
8
- });