-
Notifications
You must be signed in to change notification settings - Fork 431
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
38 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,3 +14,7 @@ composer.phar | |
|
||
# Dependency directory | ||
node_modules | ||
|
||
# Copied during build | ||
dist/README* | ||
dist/LICENSE* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,7 @@ | |
], | ||
"authors": [ | ||
{ | ||
"name": "Dmytro", | ||
"name": "Dmytro Klymenko", | ||
"email": "[email protected]", | ||
"homepage": "https://github.com/dmythro" | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,10 +4,7 @@ | |
"description": "Continents & countries: ISO 3166-1 alpha-2 code, name, ISO 639-1 languages, capital, currency, native name, phone. JSON, CSV and SQL.", | ||
"type": "module", | ||
"exports": { | ||
"./*": { | ||
"require": "./*.min.js", | ||
"import": "./*.min.mjs" | ||
}, | ||
"./minimal/*": "./minimal/*", | ||
".": { | ||
"require": "./index.min.js", | ||
"import": "./index.min.mjs" | ||
|
@@ -40,7 +37,7 @@ | |
"typescript" | ||
], | ||
"author": { | ||
"name": "Dmytro", | ||
"name": "Dmytro Klymenko", | ||
"email": "[email protected]", | ||
"url": "https://github.com/dmythro" | ||
}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
"*": "./src/*" | ||
}, | ||
"author": { | ||
"name": "Dmytro", | ||
"name": "Dmytro Klymenko", | ||
"email": "[email protected]", | ||
"url": "https://github.com/dmythro" | ||
}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import chalk from 'chalk' | ||
|
||
import { copyFileToDist } from 'scripts/utils.ts' | ||
|
||
export const copyFiles = (): void => { | ||
console.log(chalk.bold('\nCopying files to DIST:\n')) | ||
|
||
copyFileToDist('../../LICENSE') | ||
copyFileToDist('../../README.md') | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters