@jobber/design 1.0.0-pre.2 → 1.0.0-pre.5

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/CHANGELOG.md CHANGED
@@ -8,6 +8,30 @@ menu: Changelog
8
8
  All notable changes to this project will be documented in this file.
9
9
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
10
10
 
11
+ # [1.0.0-pre.5](https://github.com/GetJobber/atlantis/compare/@jobber/design@1.0.0-pre.4...@jobber/design@1.0.0-pre.5) (2023-01-25)
12
+
13
+ **Note:** Version bump only for package @jobber/design
14
+
15
+
16
+
17
+
18
+
19
+ # [1.0.0-pre.4](https://github.com/GetJobber/atlantis/compare/@jobber/design@1.0.0-pre.3...@jobber/design@1.0.0-pre.4) (2023-01-25)
20
+
21
+ **Note:** Version bump only for package @jobber/design
22
+
23
+
24
+
25
+
26
+
27
+ # [1.0.0-pre.3](https://github.com/GetJobber/atlantis/compare/@jobber/design@1.0.0-pre.2...@jobber/design@1.0.0-pre.3) (2023-01-25)
28
+
29
+ **Note:** Version bump only for package @jobber/design
30
+
31
+
32
+
33
+
34
+
11
35
  # [1.0.0-pre.2](https://github.com/GetJobber/atlantis/compare/@jobber/design@1.0.0-pre.1...@jobber/design@1.0.0-pre.2) (2023-01-25)
12
36
 
13
37
  **Note:** Version bump only for package @jobber/design
package/package-lock.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jobber/design",
3
- "version": "1.0.0-pre.2",
3
+ "version": "1.0.0-pre.5",
4
4
  "lockfileVersion": 1,
5
5
  "requires": true,
6
6
  "dependencies": {
@@ -150,8 +150,7 @@
150
150
  "@types/classnames": {
151
151
  "version": "2.2.10",
152
152
  "resolved": "https://registry.npmjs.org/@types/classnames/-/classnames-2.2.10.tgz",
153
- "integrity": "sha512-1UzDldn9GfYYEsWWnn/P4wkTlkZDH7lDb0wBMGbtIQc9zXEQq7FlKBdZUn6OBqD8sKZZ2RQO2mAjGpXiDGoRmQ==",
154
- "dev": true
153
+ "integrity": "sha512-1UzDldn9GfYYEsWWnn/P4wkTlkZDH7lDb0wBMGbtIQc9zXEQq7FlKBdZUn6OBqD8sKZZ2RQO2mAjGpXiDGoRmQ=="
155
154
  },
156
155
  "@types/color-name": {
157
156
  "version": "1.1.1",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jobber/design",
3
- "version": "1.0.0-pre.2",
3
+ "version": "1.0.0-pre.5",
4
4
  "description": "Design foundation for the Jobber Atlantis Design System",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -18,18 +18,18 @@
18
18
  "scripts": {
19
19
  "build": "npm run build:css && npm run build:css:icons && npm run build:colors && npm run build:cssTypes && npm run build:foundation && npm run build:iconCssStyle && npm run build:rollup",
20
20
  "build:rollup": "rollup --config",
21
- "build:css": "postcss src/foundation.css --config foundation_config --output foundation.css ",
21
+ "build:css": "postcss src/foundation.css --config foundation_config --output foundation.css",
22
22
  "build:css:icons": "postcss src/icons/*.css --dir icons/ --use postcss-import",
23
23
  "build:ts": "tsc --project .",
24
24
  "build:cssTypes": "tcm src/icons",
25
25
  "build:colors": "node buildColors.js",
26
26
  "build:foundation": "node buildFoundation.js && node jobberStyle.js && npm run build:foundationTypes && npm run build:addTypeLinterExceptions && npm run build:addFoundationLinterExceptions && npm run build:removeTempFiles",
27
- "build:foundationTypes": "tsc --declaration --emitDeclarationOnly --allowJs foundation.js --outDir .",
27
+ "build:foundationTypes": "tsc --declaration --emitDeclarationOnly --allowJs foundation.js --outDir . --skipLibCheck",
28
28
  "build:addTypeLinterExceptions": "(printf '/* tslint:disable */\n/* eslint-disable */\n/* This file is automatically generated and should not be edited. */\n'; cat foundation.d.ts) > foundation.d.ts.temp",
29
29
  "build:addFoundationLinterExceptions": "(printf '/* tslint:disable */\n/* eslint-disable */\n/* This file is automatically generated and should not be edited. */\n'; cat foundation.js) > foundation.js.temp",
30
30
  "build:removeTempFiles": "rm -f src/foundation.js && mv foundation.d.ts.temp foundation.d.ts && mv foundation.js.temp foundation.js",
31
31
  "build:iconCssStyle": "node buildIconStyles.js && npm run build:iconCssStyleTypes",
32
- "build:iconCssStyleTypes": "tsc --declaration --emitDeclarationOnly --allowJs src/icons/iconStyles.ts --outDir ./src/icons",
32
+ "build:iconCssStyleTypes": "tsc --declaration --emitDeclarationOnly --allowJs src/icons/iconStyles.ts --outDir ./src/icons --skipLibCheck",
33
33
  "clean": "rm -rf dist/* icons/* colors.js foundation.* iconStyles.* tsconfig.tsbuildinfo ./src/icons/iconStyles.*",
34
34
  "prepare": "npm run clean && npm run build",
35
35
  "postinstall": "npm run prepare",
@@ -39,6 +39,7 @@
39
39
  "@jobber/fonts": "^1.0.0-pre-release.0"
40
40
  },
41
41
  "dependencies": {
42
+ "@types/classnames": "^2.2.10",
42
43
  "autoprefixer": "^9.5.1",
43
44
  "classnames": "^2.2.6",
44
45
  "css-to-react-native-transform": "^2.0.0",
@@ -60,8 +61,5 @@
60
61
  "typed-css-modules": "^0.7.0",
61
62
  "typescript": "^3.8.3"
62
63
  },
63
- "devDependencies": {
64
- "@types/classnames": "^2.2.10"
65
- },
66
- "gitHead": "2400d7992b6318988fbbd45362ba70e5e0312114"
64
+ "gitHead": "0bf468a86fc9bb645c5fec9ee8bd0da79afd48d9"
67
65
  }
File without changes
package/tsconfig.json CHANGED
@@ -59,6 +59,7 @@
59
59
  "declaration": true,
60
60
  "rootDir": "src",
61
61
  "outDir": "dist",
62
+ "skipLibCheck": true
62
63
  },
63
64
  "include": [
64
65
  "src"