@jupyterlab/template 4.0.0-alpha.9 → 4.0.0-beta.0

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.
Files changed (2) hide show
  1. package/package.json +7 -9
  2. package/src/index.ts +4 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jupyterlab/template",
3
- "version": "4.0.0-alpha.9",
3
+ "version": "4.0.0-beta.0",
4
4
  "description": "JupyterLab - Package Template",
5
5
  "homepage": "https://github.com/jupyterlab/jupyterlab",
6
6
  "bugs": {
@@ -23,13 +23,13 @@
23
23
  "files": [
24
24
  "lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
25
25
  "schema/*.json",
26
- "style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
26
+ "style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}",
27
+ "src/**/*.{ts,tsx}"
27
28
  ],
28
29
  "scripts": {
29
30
  "build": "tsc -b",
30
- "build:all": "npm run build",
31
31
  "build:test": "tsc --build tsconfig.test.json",
32
- "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
32
+ "clean": "rimraf lib tsconfig.tsbuildinfo",
33
33
  "test": "jest",
34
34
  "test:cov": "jest --collect-coverage",
35
35
  "test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
@@ -37,12 +37,10 @@
37
37
  "watch": "tsc -b --watch"
38
38
  },
39
39
  "devDependencies": {
40
- "@jupyterlab/testutils": "^4.0.0-alpha.9",
41
- "@types/jest": "^26.0.10",
42
- "jest": "^26.4.2",
40
+ "@jupyterlab/testing": "^4.0.0-beta.0",
41
+ "@types/jest": "^29.2.0",
43
42
  "rimraf": "~3.0.0",
44
- "ts-jest": "^26.3.0",
45
- "typescript": "~4.6.3"
43
+ "typescript": "~5.0.2"
46
44
  },
47
45
  "publishConfig": {
48
46
  "access": "public"
package/src/index.ts ADDED
@@ -0,0 +1,4 @@
1
+ /* -----------------------------------------------------------------------------
2
+ | Copyright (c) Jupyter Development Team.
3
+ | Distributed under the terms of the Modified BSD License.
4
+ |----------------------------------------------------------------------------*/