node-backpack 0.0.453 → 0.0.455

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -38,21 +38,21 @@
38
38
  "@types/node": "^18",
39
39
  "@typescript-eslint/eslint-plugin": "^6",
40
40
  "@typescript-eslint/parser": "^6",
41
- "cdklabs-projen-project-types": "^0.1.183",
41
+ "cdklabs-projen-project-types": "^0.1.187",
42
42
  "constructs": "^10.0.0",
43
43
  "eslint": "^8",
44
44
  "eslint-import-resolver-typescript": "^2.7.1",
45
45
  "eslint-plugin-import": "^2.29.1",
46
46
  "jest": "^27",
47
47
  "jest-junit": "^15",
48
- "projen": "^0.77.6",
48
+ "projen": "^0.79.3",
49
49
  "standard-version": "^9",
50
50
  "ts-jest": "^27",
51
51
  "ts-node": "^10.9.2",
52
52
  "typescript": "^4.9.5"
53
53
  },
54
54
  "dependencies": {
55
- "esbuild": "^0.19.11",
55
+ "esbuild": "^0.19.12",
56
56
  "fs-extra": "^10.1.0",
57
57
  "license-checker": "^25.0.1",
58
58
  "madge": "^5.0.2",
@@ -61,7 +61,7 @@
61
61
  },
62
62
  "main": "lib/index.js",
63
63
  "license": "Apache-2.0",
64
- "version": "0.0.453",
64
+ "version": "0.0.455",
65
65
  "jest": {
66
66
  "testMatch": [
67
67
  "<rootDir>/src/**/__tests__/**/*.ts?(x)",
package/.gitattributes DELETED
@@ -1,25 +0,0 @@
1
- # ~~ Generated by projen. To modify, edit .projenrc.ts and run "npx projen".
2
-
3
- *.snap linguist-generated
4
- /.eslintrc.json linguist-generated
5
- /.gitattributes linguist-generated
6
- /.github/pull_request_template.md linguist-generated
7
- /.github/workflows/auto-approve.yml linguist-generated
8
- /.github/workflows/build.yml linguist-generated
9
- /.github/workflows/pull-request-lint.yml linguist-generated
10
- /.github/workflows/release.yml linguist-generated
11
- /.github/workflows/upgrade-cdklabs-projen-project-types-main.yml linguist-generated
12
- /.github/workflows/upgrade-dev-deps-main.yml linguist-generated
13
- /.github/workflows/upgrade-main.yml linguist-generated
14
- /.gitignore linguist-generated
15
- /.mergify.yml linguist-generated
16
- /.npmignore linguist-generated
17
- /.projen/** linguist-generated
18
- /.projen/deps.json linguist-generated
19
- /.projen/files.json linguist-generated
20
- /.projen/tasks.json linguist-generated
21
- /LICENSE linguist-generated
22
- /package.json linguist-generated
23
- /tsconfig.dev.json linguist-generated
24
- /tsconfig.json linguist-generated
25
- /yarn.lock linguist-generated
package/.projenrc.ts DELETED
@@ -1,39 +0,0 @@
1
- import { CdklabsTypeScriptProject } from 'cdklabs-projen-project-types';
2
-
3
- const project = new CdklabsTypeScriptProject({
4
- setNodeEngineVersion: false,
5
- stability: 'stable',
6
- private: false,
7
- name: 'node-backpack',
8
- projenrcTs: true,
9
- defaultReleaseBranch: 'main',
10
- releaseToNpm: true,
11
- devDeps: [
12
- '@types/madge',
13
- '@types/license-checker',
14
- '@types/fs-extra',
15
- ],
16
- deps: [
17
- 'esbuild',
18
- 'madge',
19
- 'license-checker',
20
- 'yargs',
21
- 'fs-extra',
22
- 'shlex',
23
- ],
24
- bin: {
25
- 'node-backpack': 'bin/node-backpack',
26
- },
27
- });
28
-
29
- project.gitignore.exclude('.vscode/');
30
-
31
- // required for esbuild > v0.14.32
32
- // see https://github.com/evanw/esbuild/pull/2155
33
- // see https://stackoverflow.com/questions/56906718/error-ts2304-cannot-find-name-webassembly
34
- project.tsconfig?.compilerOptions.lib?.push('dom');
35
-
36
- // needed for CLI tests to run
37
- project.testTask.prependSpawn(project.compileTask);
38
-
39
- project.synth();