Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 38 additions & 0 deletions .dprint.jsonc
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{
"typescript": {
"useTabs": true,
"semiColons": "asi",
"quoteStyle": "preferSingle",
"quoteProps": "asNeeded",
"bracePosition": "sameLine",
"binaryExpression.linePerExpression": true,
"conditionalType.preferSingleLine": true,
"exportDeclaration.trailingCommas": "always",
"importDeclaration.trailingCommas": "always",
"arrowFunction.useParentheses": "preferNone",
"exportDeclaration.forceMultiLine": "always",
"importDeclaration.forceMultiLine": "always",
"jsx.quoteStyle": "preferDouble"
},
"json": {
"useTabs": true,
"trailingCommas": "never"
},
"includes": [
"**"
],
"excludes": [
"**/node_modules",
"**/dist",
"**/build",
"**/.cache",
"**/coverage",
"**/.ultra.cache.json",
"**/*-lock.json",
".vscode"
],
"plugins": [
"https://plugins.dprint.dev/typescript-0.93.0.wasm",
"https://plugins.dprint.dev/json-0.19.4.wasm"
]
}
2 changes: 0 additions & 2 deletions .eslintignore

This file was deleted.

117 changes: 0 additions & 117 deletions .eslintrc.js

This file was deleted.

2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
dist/
node_modules/
coverage/
pnpm-lock.yaml
__tests__/monorepo-pnpm/pnpm-lock.yaml
16 changes: 4 additions & 12 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,12 +1,4 @@
coverage/
.eslintignore
.eslintrc.js
.npmignore
.nvmrc
.travis/
.travis.yml
jest.config.js
tsconfig.json
src/
**/__tests__/**
**/examples/**
**
!/dist/
!/dist/**
**/__tests__/**
2 changes: 1 addition & 1 deletion .npmrc
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
save-exact = true
package-lock = false
recursive-install = false
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v14.16.1
v24.14.0
27 changes: 0 additions & 27 deletions .travis.yml

This file was deleted.

3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ Set project references for TypeScript
=====================================

[![Project is](https://img.shields.io/badge/Project%20is-fantastic-ff69b4.svg)](https://github.com/Bessonov/set-project-references)
[![Build Status](https://api.travis-ci.org/Bessonov/set-project-references.svg?branch=master)](https://travis-ci.org/Bessonov/set-project-references)
[![License](http://img.shields.io/:license-MIT-blue.svg)](https://raw.githubusercontent.com/Bessonov/set-project-references/master/LICENSE)

This cli module try to resolve the problem of syncing [TypeScript project references](https://www.typescriptlang.org/docs/handbook/project-references.html) with local modules in a monorepo.
Expand Down Expand Up @@ -70,7 +69,7 @@ License

The MIT License (MIT)

Copyright (c) 2019, Anton Bessonov
Copyright (c) 2019 - now, Anton Bessonov

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
4 changes: 4 additions & 0 deletions __tests__/monorepo-pnpm/.npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
save-exact = true
recursive-install = true
prefer-workspace-packages = true
link-workspace-packages = true
5 changes: 5 additions & 0 deletions __tests__/monorepo-pnpm/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"name": "@org/monorepo",
"version": "0.0.1",
"private": true
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
"name": "@org/parent",
"version": "0.0.1",
"private": true
}
}
2 changes: 2 additions & 0 deletions __tests__/monorepo-pnpm/pnpm-workspace.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
packages:
- 'packages/*'
8 changes: 0 additions & 8 deletions __tests__/monorepo_yarn/package.json

This file was deleted.

Loading