mirror of https://github.com/webpack/webpack.git
10 lines
150 B
JavaScript
10 lines
150 B
JavaScript
|
export const sharedData = {
|
||
|
version: "1.0.0",
|
||
|
timestamp: Date.now()
|
||
|
};
|
||
|
---
|
||
|
export const sharedData = {
|
||
|
version: "2.0.0",
|
||
|
timestamp: Date.now()
|
||
|
};
|