@gct-paas/scss 0.1.4-dev.7 → 0.1.4-dev.8

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/es/index.mjs CHANGED
@@ -1,4 +1 @@
1
- import './utils/index.mjs';
2
1
  export { Namespace } from './utils/namespace/namespace.mjs';
3
-
4
- "use strict";
File without changes
@@ -1,4 +1,3 @@
1
- "use strict";
2
1
  const STYLE_NAMESPACE_TAG = "gct";
3
2
  const statePrefix = "is-";
4
3
  function _bem(namespace, block, blockSuffix, element, modifier) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gct-paas/scss",
3
- "version": "0.1.4-dev.7",
3
+ "version": "0.1.4-dev.8",
4
4
  "type": "module",
5
5
  "description": "paas 平台样式框架包",
6
6
  "main": "dist/index.min.cjs",
@@ -40,8 +40,9 @@
40
40
  "license": "MIT",
41
41
  "author": "gct",
42
42
  "scripts": {
43
- "dev": "rollup -c -w --environment=NODE_ENV:development",
44
- "build": "rollup -c --environment=NODE_ENV:production && vite build --mode production --config vite.config.ts && sass style/index.scss dist/index.min.css --style=compressed",
43
+ "dev": "cross-env NODE_ENV=development vite build --watch --config vite.dev.config.ts",
44
+ "es:build": "vite build --config vite.dev.config.ts",
45
+ "build": "vite build --config vite.dev.config.ts && vite build --config vite.config.ts && sass style/index.scss dist/index.min.css --style=compressed",
45
46
  "publish:next": "npm run build && npm publish --access public --tag=next --registry=https://registry.npmjs.org/",
46
47
  "publish:dev": "npm run build && npm publish --access public --tag=dev --registry=https://registry.npmjs.org/",
47
48
  "publish:alpha": "npm run build && npm publish --access public --tag=alpha --registry=https://registry.npmjs.org/",
@@ -55,5 +56,5 @@
55
56
  "devDependencies": {
56
57
  "sass": "^1.97.3"
57
58
  },
58
- "gitHead": "331b60348593f6afa0ccaa54fcdd52435b7876fa"
59
+ "gitHead": "bf7f4f9672c3906ec834e6d58b999ce78f7cad08"
59
60
  }
@@ -1,3 +0,0 @@
1
- export { Namespace } from './namespace/namespace.mjs';
2
-
3
- "use strict";
package/es/vite-env.d.ts DELETED
@@ -1 +0,0 @@
1
- /// <reference types="vite/client" />