-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: fix badges and links to guidelines
The bug is fixed by updating the dependency of gobstones-scripts to 0.8.3 and updating configuration files.
- Loading branch information
Showing
12 changed files
with
89 additions
and
19 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
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
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
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
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# Contibution Guidelines | ||
|
||
Please, before contributing to this project, take a moment to read our [Contributions Guidelines](https://github.com/gobstones/gobstones-guidelines). | ||
Please, before contributing to this project, take a moment to read our [Contributions Guidelines](https://gobstones.github.io/gobstones-guidelines/). | ||
|
||
Also, be sure to understand that by contributing you agree to allow | ||
the project owners to license your work under the terms of our | ||
[License](https://github.com/gobstones/gobstones-guidelines/blob/main/LICENSE). | ||
[License](https://gobstones.github.io/gobstones-guidelines/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
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,64 @@ | ||
/* eslint-disable @typescript-eslint/no-var-requires */ | ||
const fs = require('fs'); | ||
|
||
const { config } = require('@gobstones/gobstones-scripts'); | ||
const commonjs = require('@rollup/plugin-commonjs'); | ||
const nodeResolve = require('@rollup/plugin-node-resolve'); | ||
const typescript = require('@rollup/plugin-typescript'); | ||
|
||
const packageJson = JSON.parse(fs.readFileSync('./package.json').toString()); | ||
|
||
config.init(); | ||
const tsConfigPath = config.projectType.tsConfigJSON.toolingFile; | ||
|
||
module.exports = [ | ||
{ | ||
input: 'src/index.ts', | ||
output: [ | ||
{ | ||
sourcemap: true, | ||
file: packageJson.exports['.'].import.default, | ||
format: 'esm' | ||
}, | ||
{ | ||
sourcemap: true, | ||
file: packageJson.exports['.'].require.default, | ||
format: 'cjs' | ||
} | ||
], | ||
preserveSymlinks: true, | ||
plugins: [ | ||
typescript({ | ||
tsconfig: `${tsConfigPath}`, | ||
declarationDir: './typings' | ||
}), | ||
commonjs() | ||
], | ||
external: [/@gobstones\/.*/] | ||
}, | ||
{ | ||
input: 'src/cli.ts', | ||
output: [ | ||
{ | ||
sourcemap: true, | ||
file: packageJson.exports['./cli'].import.default, | ||
format: 'esm' | ||
}, | ||
{ | ||
sourcemap: true, | ||
file: packageJson.exports['./cli'].require.default, | ||
format: 'cjs' | ||
} | ||
], | ||
preserveSymlinks: true, | ||
plugins: [ | ||
nodeResolve({ preferBuiltins: true }), | ||
typescript({ | ||
tsconfig: `${tsConfigPath}`, | ||
declarationDir: './typings' | ||
}), | ||
commonjs() | ||
], | ||
external: [/@gobstones\/.*/, 'commander', 'fs'] | ||
} | ||
]; |
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