create-replicate
Advanced tools
Comparing version 1.8.1 to 1.8.2
# Changelog | ||
## [1.8.2](https://github.com/replicate/create-replicate/compare/v1.8.1...v1.8.2) (2024-02-20) | ||
### Bug Fixes | ||
* copy .gitignore file when creating new project ([#41](https://github.com/replicate/create-replicate/issues/41)) ([cdec0ad](https://github.com/replicate/create-replicate/commit/cdec0ad3bbb911e4574b30912df19342e33b180a)) | ||
## [1.8.1](https://github.com/replicate/create-replicate/compare/v1.8.0...v1.8.1) (2024-02-16) | ||
@@ -4,0 +11,0 @@ |
{ | ||
"name": "create-replicate", | ||
"version": "1.8.1", | ||
"version": "1.8.2", | ||
"description": "Generate a simple Node.js project structure for running AI models with Replicate's API", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -34,8 +34,8 @@ import { describe, it, expect, afterEach } from 'vitest' | ||
// Check if package.json exists in the directory | ||
// Check for expected files | ||
expect(fileExists(path.join(directoryName, '.gitignore'))).toBe(true) | ||
expect(fileExists(path.join(directoryName, '.env'))).toBe(true) | ||
expect(fileExists(path.join(directoryName, 'index.js'))).toBe(true) | ||
expect(fileExists(path.join(directoryName, 'package.json'))).toBe(true) | ||
// Check if index.js exists in the directory | ||
expect(fileExists(path.join(directoryName, 'index.js'))).toBe(true) | ||
// Check if .env exists in the directory with test token | ||
@@ -42,0 +42,0 @@ const envFile = path.join(directoryName, '.env') |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
54877
1289