Skip to content

Commit

Permalink
chore: change the output dir for dist files (#18)
Browse files Browse the repository at this point in the history
node dist files are now in `dist/node`.
deno dist files are now in `dist/deno`.
  • Loading branch information
RebeccaStevens authored Nov 22, 2021
1 parent d0833d8 commit 361394e
Show file tree
Hide file tree
Showing 31 changed files with 90 additions and 1,595 deletions.
2 changes: 1 addition & 1 deletion .cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"ignorePaths": [
"**/coverage/**",
"**/node_modules/**",
"**/lib/**",
"**/dist/**",
"**/**/CHANGELOG.md",
"**/*.{json}",
".cspell.json",
Expand Down
7 changes: 3 additions & 4 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,9 @@
},
"ignorePatterns": [
"/coverage/",
"/deno-dist/",
"/lib/",
"/types/",
"/tests/types/**/*",
"/dist/",
"/tests/types/",
"/types-legacy/",
"/**/*.cjs",
"/**/*.js",
"/**/*.md"
Expand Down
7 changes: 1 addition & 6 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
/deno-dist/
/lib/
/build/
/coverage/

!/types/
/types/*
!/types/legacy
/dist/

.nyc_output/
node_modules/
Expand Down
4 changes: 2 additions & 2 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
/CHANGELOG.md
/lib/
/types/
/dist/
/types-legacy/
2 changes: 1 addition & 1 deletion .releaserc
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ plugins:
All notable changes to this project will be documented in this file. Dates are displayed in UTC."
- - "@semantic-release/git"
- assets:
- deno-dist/
- dist
- CHANGELOG.md
- "@semantic-release/npm"
- - "@semantic-release/github"
Expand Down
6 changes: 2 additions & 4 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@
".nyc_output/": true,
"coverage/": true,
"build/": true,
"deno-dist/": true,
"lib/": true,
"dist/": true,
"ava.config.cjs": true,
"rollup.config.cjs": true,
},
Expand All @@ -13,8 +12,7 @@
"**/.git/": true,
".nyc_output/": true,
".vscode/": true,
"deno-dist/": true,
"lib/": true,
"dist/": true,
"ava.config.cjs": true,
"rollup.config.cjs": true,
"yarn.lock": true,
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ yarn add -D deepmerge-ts
// import_map.json
{
"imports": {
"deepmerge-ts": "https://deno.land/x/deepmergets@__version__/index.ts"
"deepmerge-ts": "https://deno.land/x/deepmergets@__version__/dist/deno/index.ts"
}
}
```
Expand Down
69 changes: 0 additions & 69 deletions deno-dist/CHANGELOG.md

This file was deleted.

29 changes: 0 additions & 29 deletions deno-dist/LICENSE

This file was deleted.

134 changes: 0 additions & 134 deletions deno-dist/README.md

This file was deleted.

Binary file removed deno-dist/assets/classic-merge.gif
Binary file not shown.
Binary file removed deno-dist/assets/header.png
Binary file not shown.
Binary file removed deno-dist/assets/smart-merge.gif
Binary file not shown.
Loading

0 comments on commit 361394e

Please sign in to comment.