Skip to content

Commit a55b887

Browse files
committed
feat: add dummy package to test PR toolkit ruleset
(and merging to master from CI)
1 parent eb7a1c2 commit a55b887

7 files changed

+83
-0
lines changed

package-lock.json

+11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/dummy/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

packages/dummy/package.json

+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
{
2+
"name": "@apify/dummy-package-for-testing",
3+
"version": "2.1.2",
4+
"description": "Tools and constants shared across Apify projects.",
5+
"main": "./dist/cjs/index.cjs",
6+
"module": "./dist/esm/index.mjs",
7+
"typings": "./dist/cjs/index.d.ts",
8+
"exports": {
9+
".": {
10+
"import": {
11+
"types": "./dist/esm/index.d.mts",
12+
"default": "./dist/esm/index.mjs"
13+
},
14+
"require": {
15+
"types": "./dist/cjs/index.d.ts",
16+
"default": "./dist/cjs/index.cjs"
17+
}
18+
}
19+
},
20+
"keywords": [
21+
"apify"
22+
],
23+
"author": {
24+
"name": "Apify",
25+
"email": "[email protected]",
26+
"url": "https://apify.com"
27+
},
28+
"contributors": [
29+
"Jan Curn <[email protected]>",
30+
"Marek Trunkát <[email protected]>"
31+
],
32+
"license": "Apache-2.0",
33+
"repository": {
34+
"type": "git",
35+
"url": "git+https://github.com/apify/apify-shared-js"
36+
},
37+
"bugs": {
38+
"url": "https://github.com/apify/apify-shared-js/issues"
39+
},
40+
"homepage": "https://apify.com",
41+
"scripts": {
42+
"build": "npm run clean && npm run compile && npm run copy",
43+
"clean": "rimraf ./dist",
44+
"compile": "tsup",
45+
"copy": "ts-node -T ../../scripts/copy.ts"
46+
},
47+
"publishConfig": {
48+
"access": "public"
49+
},
50+
"dependencies": {
51+
}
52+
}

packages/dummy/src/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export const foo = 'bar';

packages/dummy/tsconfig.build.json

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"extends": "../../tsconfig.build.json",
3+
"compilerOptions": {
4+
"outDir": "./dist",
5+
"emitDeclarationOnly": true
6+
},
7+
"include": ["src/**/*"]
8+
}

packages/dummy/tsconfig.json

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"extends": "../../tsconfig.json",
3+
"include": ["src/**/*"]
4+
}

packages/dummy/tsup.config.ts

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import { createTsupConfig } from '../../scripts/tsup.config';
2+
3+
export default createTsupConfig({});

0 commit comments

Comments
 (0)