@alifd/theme-fpx-warehouse 1.0.0

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.
@@ -0,0 +1,8 @@
1
+ // 引用主题变量
2
+ @import "variables.scss";
3
+
4
+ // 引用基础主题
5
+ @import "~@alifd/next/index-noreset.scss";
6
+
7
+ // 引用自定义icon
8
+ @import "icons.scss";
@@ -0,0 +1,3 @@
1
+ @import 'variables.scss2css.scss';
2
+ @import '~@alifd/next/index-noreset.scss';
3
+ @import 'icons.var.css';
package/index.js ADDED
@@ -0,0 +1,3 @@
1
+ 'use strict';
2
+
3
+ module.exports = require('@alifd/next');
package/index.scss ADDED
@@ -0,0 +1,7 @@
1
+ // 引用主题变量
2
+ @import "variables.scss";
3
+
4
+ // 引用基础主题
5
+ @import "~@alifd/next/index.scss";
6
+
7
+ @import "icons.scss";
package/index.var.scss ADDED
@@ -0,0 +1,3 @@
1
+ @import 'variables.scss2css.scss';
2
+ @import '~@alifd/next/index.scss';
3
+ @import 'icons.var.css';
package/package.json ADDED
@@ -0,0 +1,43 @@
1
+ {
2
+ "name": "@alifd/theme-fpx-warehouse",
3
+ "version": "1.0.0",
4
+ "author": "nNofzScfKoe_tzTF5tE9",
5
+ "scripts": {
6
+ "build-theme": "tnpm run sass2less && node bin/build.js",
7
+ "sass2less": "sass2less variables.scss variables.less"
8
+ },
9
+ "main": "index.js",
10
+ "devDependencies": {
11
+ "babel-core": "^6.26.0",
12
+ "babel-loader": "^7.1.4",
13
+ "@alifd/babel-preset-next": "^2.0.0",
14
+ "css-loader": "^0.28.11",
15
+ "css-split-webpack-plugin": "^0.2.5",
16
+ "extract-text-webpack-plugin": "^3.0.0",
17
+ "case-sensitive-paths-webpack-plugin": "^2.1.1",
18
+ "node-sass": "^4.9.0",
19
+ "sass": "^1.3.0",
20
+ "less-plugin-sass2less": "^1.x",
21
+ "style-loader": "^0.21.0",
22
+ "rimraf": "^2.x",
23
+ "webpack": "^3.0.0",
24
+ "autoprefixer": "^7.1.4",
25
+ "fast-sass-loader": "^1.2.5",
26
+ "postcss-custom-properties": "^9.1.1",
27
+ "postcss-loader": "^2.0.6",
28
+ "postcss-calc": "^7.0.4"
29
+ },
30
+ "dependencies": {
31
+ "@alifd/next": "~1.27.x"
32
+ },
33
+ "peerDependencies": {
34
+ "moment": "^2.22.1",
35
+ "react": ">=16.0.0",
36
+ "react-dom": ">=16.0.0",
37
+ "@alifd/next": "~1.27.x"
38
+ },
39
+ "license": "ISC",
40
+ "publishConfig": {
41
+ "registry": "https://registry.npmjs.org"
42
+ }
43
+ }