@liner-fe/prism 2.1.58 → 2.1.60

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,7 +1,8 @@
1
1
  {
2
2
  "name": "@liner-fe/prism",
3
- "version": "2.1.58",
3
+ "version": "2.1.60",
4
4
  "packageManager": "yarn@3.6.0",
5
+ "type": "module",
5
6
  "scripts": {
6
7
  "dev": "next dev",
7
8
  "start": "next start",
@@ -10,7 +11,9 @@
10
11
  "build-storybook": "storybook build",
11
12
  "ts-node": "tsx --tsconfig ./tsconfig.build.json",
12
13
  "appendCSS": "yarn ts-node ./scripts/index.ts",
13
- "build": "yarn illustToTypescriptCode && yarn tsup --config ./config/tsup/tsup.config.ts && yarn ts-node ./scripts/copyPublic",
14
+ "build": "yarn illustToTypescriptCode && yarn build:main && yarn build:illust && yarn ts-node ./scripts/copyPublic",
15
+ "build:illust": "yarn tsup --config ./config/tsup/illust-tsup.config.ts",
16
+ "build:main": "yarn tsup --config ./config/tsup/tsup.config.ts",
14
17
  "build:package": "yarn build",
15
18
  "prepack": "yarn build",
16
19
  "illust": "yarn ts-node ./scripts/format-illust && find . -type d -empty -delete",