aldehyde 0.0.9 → 0.0.10

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.
Files changed (2) hide show
  1. package/lib/index.js +4 -0
  2. package/package.json +8 -6
package/lib/index.js ADDED
@@ -0,0 +1,4 @@
1
+ import ActTable from './components/table/act-table';
2
+ import SelectTable from './components/table/select-table';
3
+ export { ActTable, SelectTable };
4
+ //# sourceMappingURL=index.js.map
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "aldehyde",
3
- "version": "0.0.9",
3
+ "version": "0.0.10",
4
4
  "author": "cosmicparticle",
5
- "main": "dist/aldehyde.js",
5
+ "main": "lib/index.js",
6
6
  "module": "src/index.txs",
7
7
  "typings": "lib/index.d.ts",
8
8
  "files": [
@@ -94,7 +94,6 @@
94
94
  "superagent-jsonp": "^0.2.1",
95
95
  "three": "^0.134.0",
96
96
  "typescript": "^4.5.4",
97
-
98
97
  "url": "^0.11.0",
99
98
  "url-loader": "^4.1.1",
100
99
  "use-resize-observer": "^7.0.0",
@@ -107,7 +106,8 @@
107
106
  "build": "cross-env NODE_ENV=production webpack --config config/webpack.prod.js",
108
107
  "dev": "cross-env NODE_ENV=development webpack server --config config/webpack.dev.js",
109
108
  "package": "cross-env NODE_ENV=development webpack --config config/webpack.package.js",
110
- "tsc": "tsc"
109
+ "tsc": "tsc",
110
+ "copy-files": "copyfiles -u 1 src/**/*.html src/**/*.css lib/"
111
111
  },
112
112
  "engines": {
113
113
  "node": ">=14"
@@ -173,6 +173,7 @@
173
173
  "case-sensitive-paths-webpack-plugin": "^2.4.0",
174
174
  "clean-webpack-plugin": "^4.0.0",
175
175
  "compression-webpack-plugin": "^9.2.0",
176
+ "copyfiles": "^2.4.1",
176
177
  "cross-env": "^7.0.3",
177
178
  "css-loader": "^6.5.1",
178
179
  "eslint": "^5.6.0",
@@ -196,8 +197,10 @@
196
197
  "pnp-webpack-plugin": "^1.7.0",
197
198
  "postcss-loader": "^6.2.1",
198
199
  "postcss-scss": "^3.0.5",
200
+ "rimraf": "^3.0.2",
199
201
  "style-loader": "^3.3.1",
200
202
  "ts-loader": "^9.2.6",
203
+ "typescript-plugin-css-modules": "^3.4.0",
201
204
  "webpack": "^5.72.0",
202
205
  "webpack-cli": "^4.9.2",
203
206
  "webpack-dev-middleware": "^5.3.0",
@@ -205,7 +208,6 @@
205
208
  "webpack-manifest-plugin": "^4.0.2",
206
209
  "webpack-merge": "^5.8.0",
207
210
  "webpack-node-externals": "^3.0.0",
208
- "workbox-webpack-plugin": "^6.4.2",
209
- "typescript-plugin-css-modules": "^3.4.0"
211
+ "workbox-webpack-plugin": "^6.4.2"
210
212
  }
211
213
  }