@seayoo-web/scripts 1.1.1 → 1.1.2
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/dist/index.js +0 -5
- package/package.json +6 -5
- package/types/index.d.ts +0 -1
package/dist/index.js
CHANGED
|
@@ -13,7 +13,6 @@ import { vueTsConfigs } from "@vue/eslint-config-typescript";
|
|
|
13
13
|
import { defineConfigWithVueTs } from "@vue/eslint-config-typescript";
|
|
14
14
|
import { flatConfigs } from "eslint-plugin-import";
|
|
15
15
|
import pluginVue from "eslint-plugin-vue";
|
|
16
|
-
import nestingPlugin from "postcss-nesting";
|
|
17
16
|
function defineLibBuildConfig(option) {
|
|
18
17
|
return defineConfig({
|
|
19
18
|
build: {
|
|
@@ -237,9 +236,6 @@ const stylelintConfig = {
|
|
|
237
236
|
],
|
|
238
237
|
rules: {}
|
|
239
238
|
};
|
|
240
|
-
const postcssConfig = {
|
|
241
|
-
plugins: [nestingPlugin]
|
|
242
|
-
};
|
|
243
239
|
export {
|
|
244
240
|
EnvPrefix,
|
|
245
241
|
defineConfigWithVueTs,
|
|
@@ -248,7 +244,6 @@ export {
|
|
|
248
244
|
getBuildEnv,
|
|
249
245
|
htmlInjectPlugin,
|
|
250
246
|
importEslintConfig,
|
|
251
|
-
postcssConfig,
|
|
252
247
|
stylelintConfig,
|
|
253
248
|
transformEnvs,
|
|
254
249
|
vueEslintConfig
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@seayoo-web/scripts",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.2",
|
|
4
4
|
"description": "scripts for seayoo web monorepos",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"source": "index.ts",
|
|
@@ -47,9 +47,6 @@
|
|
|
47
47
|
"jiti": "^2.4.2",
|
|
48
48
|
"ora": "^8.2.0",
|
|
49
49
|
"postcss-html": "^1.8.0",
|
|
50
|
-
"postcss-nesting": "^13.0.1",
|
|
51
|
-
"stylelint-config-recess-order": "^6.0.0",
|
|
52
|
-
"stylelint-config-standard": "^37.0.0",
|
|
53
50
|
"vite-plugin-stylelint": "^6.0.0",
|
|
54
51
|
"vite-plugin-vue-devtools": "^7.7.2",
|
|
55
52
|
"@seayoo-web/finder": "^2.0.13"
|
|
@@ -61,11 +58,15 @@
|
|
|
61
58
|
"eslint": "^9.19.0",
|
|
62
59
|
"postcss": "^8.5.3",
|
|
63
60
|
"stylelint": "^16.14.1",
|
|
61
|
+
"stylelint-config-recess-order": "^6.0.0",
|
|
62
|
+
"stylelint-config-standard": "^37.0.0",
|
|
64
63
|
"@seayoo-web/tsconfig": "^1.0.2"
|
|
65
64
|
},
|
|
66
65
|
"peerDependencies": {
|
|
67
66
|
"eslint": "^9.19.0",
|
|
68
|
-
"stylelint": "^16.14.1"
|
|
67
|
+
"stylelint": "^16.14.1",
|
|
68
|
+
"stylelint-config-recess-order": "^6.0.0",
|
|
69
|
+
"stylelint-config-standard": "^37.0.0"
|
|
69
70
|
},
|
|
70
71
|
"scripts": {
|
|
71
72
|
"build": "vite build && tsc --emitDeclarationOnly",
|
package/types/index.d.ts
CHANGED