@effing/create 0.1.1 → 0.1.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.
package/dist/index.js CHANGED
@@ -10,7 +10,7 @@ async function copyDir(src, dest) {
10
10
  const entries = await fs.readdir(src, { withFileTypes: true });
11
11
  for (const entry of entries) {
12
12
  const srcPath = path.join(src, entry.name);
13
- const destName = entry.name.startsWith("_") ? "." + entry.name.slice(1) : entry.name;
13
+ const destName = entry.name.startsWith("_DOT_") ? "." + entry.name.slice(5) : entry.name;
14
14
  const destPath = path.join(dest, destName);
15
15
  if (entry.isDirectory()) {
16
16
  await copyDir(srcPath, destPath);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@effing/create",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Create a new Effing project",
5
5
  "type": "module",
6
6
  "bin": "./dist/index.js",
@@ -7,6 +7,7 @@ A complete example application demonstrating how to build Annies (animations) an
7
7
  ```bash
8
8
  cd demos/starter
9
9
  pnpm install
10
+ cp .env.example .env
10
11
  pnpm dev
11
12
  ```
12
13
 
@@ -11,14 +11,14 @@
11
11
  "typecheck": "react-router typegen && tsc"
12
12
  },
13
13
  "dependencies": {
14
- "@effing/annie": "^0.1.1",
15
- "@effing/annie-player": "^0.1.1",
16
- "@effing/effie": "^0.1.1",
17
- "@effing/effie-preview": "^0.1.1",
18
- "@effing/ffs": "^0.1.1",
19
- "@effing/satori": "^0.1.1",
20
- "@effing/serde": "^0.1.1",
21
- "@effing/tween": "^0.1.1",
14
+ "@effing/annie": "^0.1.2",
15
+ "@effing/annie-player": "^0.1.2",
16
+ "@effing/effie": "^0.1.2",
17
+ "@effing/effie-preview": "^0.1.2",
18
+ "@effing/ffs": "^0.1.2",
19
+ "@effing/satori": "^0.1.2",
20
+ "@effing/serde": "^0.1.2",
21
+ "@effing/tween": "^0.1.2",
22
22
  "@react-router/node": "^7.0.0",
23
23
  "@react-router/serve": "^7.0.0",
24
24
  "cross-env": "^7.0.3",
File without changes