@nebula.js/sn-text 1.2.2 → 1.2.4

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nebula.js/sn-text",
3
- "version": "1.2.2",
3
+ "version": "1.2.4",
4
4
  "description": "Display text, links, and measures. Add tables with rows and columns. Format and color the text. Add background image and color.",
5
5
  "author": "QlikTech International AB",
6
6
  "license": "MIT",
@@ -24,26 +24,6 @@
24
24
  },
25
25
  "main": "dist/sn-text.js",
26
26
  "systemjs": "dist/sn-text.systemjs.js",
27
- "scripts": {
28
- "build": "nebula build --core core --mode production --sourcemap false --config nebula.config.cjs && nebula sense --meta src/meta.json",
29
- "build:test": "nebula build --mode production --config nebula.config.cjs",
30
- "build:dev": "nebula build --core core --mode development --typescript",
31
- "lint": "eslint .",
32
- "start": "nebula serve --type sn-text --config nebula.config.cjs",
33
- "sense": "nebula sense --meta src/meta.json",
34
- "test": "yarn test:unit",
35
- "test:unit": "jest",
36
- "test:e2e": "playwright test",
37
- "test:e2e:report": "playwright show-report test/integration/test-report",
38
- "copy:ext": "node tools/copyExt.js",
39
- "dev:ext": "node tools/devExt.js",
40
- "build:ext": "yarn build && yarn sense",
41
- "types:check": "tsc --noEmit",
42
- "prettier": "prettier '**' --ignore-unknown",
43
- "format:check": "yarn prettier --check",
44
- "format:write": "yarn prettier --write",
45
- "spec": "npx @scriptappy/cli from-jsdoc -c ./api-spec/props.conf.js"
46
- },
47
27
  "devDependencies": {
48
28
  "@babel/core": "^7.21.4",
49
29
  "@babel/preset-env": "^7.21.4",
@@ -63,17 +43,18 @@
63
43
  "@material-ui/core": "^4.12.4",
64
44
  "@material-ui/icons": "^4.11.3",
65
45
  "@mui/material": "5.12.1",
66
- "@nebula.js/cli": "^4.1.0",
67
- "@nebula.js/cli-build": "^4.1.0",
68
- "@nebula.js/cli-sense": "^4.1.0",
69
- "@nebula.js/cli-serve": "^4.1.0",
46
+ "@nebula.js/cli": "5.2.0",
47
+ "@nebula.js/cli-build": "5.2.0",
48
+ "@nebula.js/cli-sense": "5.2.0",
49
+ "@nebula.js/cli-serve": "5.2.0",
70
50
  "@nebula.js/stardust": "^4.1.0",
71
51
  "@playwright/test": "^1.35.1",
72
- "@qlik-trial/sprout": "^3.5.0",
73
- "@qlik-trial/text-editor-kit": "^1.2.8",
52
+ "@qlik-trial/sprout": "4.2.0",
53
+ "@qlik-trial/text-editor-kit": "^1.2.9",
74
54
  "@qlik-trial/translator": "^0.10.2",
75
55
  "@qlik-trial/visualization-kit": "1.0.3",
76
56
  "@qlik/sdk": "^0.22.0",
57
+ "@qlik/tsconfig": "0.3.0",
77
58
  "@rollup/plugin-typescript": "^11.0.0",
78
59
  "@testing-library/jest-dom": "^5.16.5",
79
60
  "@testing-library/react": "^14.0.0",
@@ -118,6 +99,23 @@
118
99
  "yargs": "^17.7.1"
119
100
  },
120
101
  "peerDependencies": {
121
- "@nebula.js/stardust": ">=3.0.0"
102
+ "@nebula.js/stardust": ">=5.0.0"
103
+ },
104
+ "scripts": {
105
+ "build": "nebula build --core core --sourcemap false",
106
+ "build:dev": "nebula build --mode development && cp -r dist sn-text-ext/",
107
+ "lint": "eslint src",
108
+ "start": "nebula serve --type sn-text --config nebula.config.js",
109
+ "start:mfe": "nebula serve --mfe --type sn-text",
110
+ "sense": "nebula sense --meta src/meta.json",
111
+ "test": "pnpm run test:unit",
112
+ "test:unit": "jest",
113
+ "test:e2e": "playwright test",
114
+ "test:e2e:report": "playwright show-report test/integration/test-report",
115
+ "types:check": "tsc --noEmit",
116
+ "prettier": "prettier '**' --ignore-unknown",
117
+ "format:check": "pnpm run prettier --check",
118
+ "format:write": "pnpm run prettier --write",
119
+ "spec": "npx @scriptappy/cli from-jsdoc -c ./api-spec/props.conf.js"
122
120
  }
123
- }
121
+ }