Skip to content

Commit

Permalink
feat: fix exports
Browse files Browse the repository at this point in the history
  • Loading branch information
kenerwin88 committed Jan 10, 2023
1 parent 8059871 commit 1be45e1
Show file tree
Hide file tree
Showing 14 changed files with 13,436 additions and 7,352 deletions.
4 changes: 2 additions & 2 deletions .gitattributes

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .github/workflows/build.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .github/workflows/release.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .github/workflows/upgrade-main.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions .gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions .npmignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 0 additions & 4 deletions .projen/deps.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

40 changes: 36 additions & 4 deletions .projen/tasks.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions .projenrc.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
import { typescript } from 'projen';
import { NodePackageManager } from 'projen/lib/javascript';

const project = new typescript.TypeScriptProject({
defaultReleaseBranch: 'main',
name: 'yarn-bound-ts',
license: 'MIT',
copyrightOwner: 'Yarn Community',
projenrcTs: true,
deps: ['@babel/preset-env'],
packageManager: NodePackageManager.NPM,
description: 'Quality of life wrapper around bondage.js',
devDeps: ['eslint-plugin-prettier', 'esbuild', 'prettier', 'eslint-plugin-sonarjs', 'ts-node'],
tsconfig: {
Expand All @@ -17,9 +18,10 @@ const project = new typescript.TypeScriptProject({
},
release: true,
package: true,
bundlerOptions: {},
gitignore: ['lib', '.idea', '.DS_Store'],
});

project.bundler.addBundle('src/index.ts', { target: 'node19', platform: 'node', outfile: 'index.js', executable: false, tsconfigPath: 'tsconfig.json', sourcemap: true });
project.eslint?.addExtends('plugin:sonarjs/recommended');
// @ts-ignore
project.eslint?.addRules({ 'sonarjs/no-duplicate-string': 'off' });
Expand Down
Loading

0 comments on commit 1be45e1

Please sign in to comment.